#include<bits/stdc++.h> #define rep(i,a,b) for(int i=a;i<b;i++) #define per(i,a,b) for(int i=a;i>b;i--) #define repLL(i,a,b) for(LL i=(LL)a;i<(LL)b;i++) #define perLL(i,a,b) for(LL i=(LL)a;i>(LL)b;i--) #define debug5(a,b,c,d,e) cerr<<#a<<": "<<a<<" "<<#b<<": "<<b<<" "<<#c<<": "<<c<<" "<<#d<<": "<<d<<" "<<#e<<": "<<e<<endl; #define debug4(a,b,c,d) cerr<<#a<<": "<<a<<" "<<#b<<": "<<b<<" "<<#c<<": "<<c<<" "<<#d<<": "<<d<<endl; #define debug3(a,b,c) cerr<<#a<<": "<<a<<" "<<#b<<": "<<b<<" "<<#c<<": "<<c<<endl; #define debug2(a,b) cerr<<#a<<": "<<a<<" "<<#b<<": "<<b<<endl; #define debug(a) cerr<<#a<<": "<<a<<endl; #define pb push_back #define mp make_pair #define SZ(x) ((int)(x).size()) #define ALL(x) x.begin(),x.end() #define fi first #define se second #define _upgrade ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); using namespace std; typedef long long LL; typedef pair<int,int> PII; typedef pair<LL,LL> PLL; typedef vector<PII> VPII; typedef vector<PLL> VPLL; typedef vector<LL> VLL; typedef vector<int> VI; typedef vector<string> VS; typedef vector<char> VC; typedef long double LD; typedef pair<LD,LD> PLD; typedef vector<LD> VLD; typedef vector<PLD> VPLD; const int maxn=(5e3)+7; const int inf=(1e9)+7; const LL LLinf=(1e18)+7; const LD eps=1e-9; const LL mod=1e9+7; // ***************************** CODE ***************************** // struct punkt { LL x,y; LL r; LL R; int numer; bool operator< ( const punkt a ) const { if(a.x!=x) return x<a.x; return y<a.y; } }; LL odp[maxn]; punkt tab[maxn]; int n; LL ogarnij(PLL a,PLL b) { if(a.fi>b.fi || a.se>b.se) return LLinf; return max(b.fi-a.fi,b.se-a.se); } void spr(int a,int b) { if(tab[b].R<LLinf) { LL dlu=ogarnij({tab[a].x,tab[a].y},{tab[b].x,tab[b].y}); dlu=max(dlu,ogarnij({tab[a].x,tab[a].y},{tab[b].x+tab[b].r,tab[b].y})); dlu=max(dlu,ogarnij({tab[a].x,tab[a].y},{tab[b].x,tab[b].y+tab[b].r})); tab[a].r=min(tab[a].r,dlu); } else { // cout<<a<<" "<<b<<" "<<tab[a].r<<" "; tab[a].r=min(tab[a].r,ogarnij({tab[a].x,tab[a].y},{tab[b].x,tab[b].y})); // cout<<tab[a].r<<endl; } } bool pun(int a, PLL b) { if(tab[a].x<b.fi && tab[a].x+tab[a].R>b.fi && tab[a].y<b.se && tab[a].y+tab[a].R>b.se) return 1; return 0; } bool przecinaja(int a,int b) { if(pun(a,{tab[b].x,tab[b].y}) ||pun(a,{tab[b].x+tab[b].R,tab[b].y}) ||pun(a,{tab[b].x,tab[b].y+tab[b].R}) ||pun(a,{tab[b].x+tab[b].R,tab[b].y+tab[b].R}) ) return 1; return 0; } void wypisz(int a) { cout<<tab[a].x<<" "<<tab[a].y<<" "<<tab[a].R<<endl; } inline void solve() { cin>>n; rep(i,0,n) { cin>>tab[i].x>>tab[i].y; tab[i].R=tab[i].r=LLinf; tab[i].numer=i; } sort(tab,tab+n); VI niesko; rep(i,0,n) rep(j,0,n) if(i!=j) spr(i,j); rep(i,0,n) { tab[i].R=tab[i].r; // cout<<tab[i].numer<<" "<<tab[i].R<<endl; if(tab[i].R==LLinf) niesko.pb(i); else rep(j,0,n) if(i!=j && tab[j].R==LLinf) spr(j,i); } // cout<<tab[0].numer<<" "<<tab[0].R<<endl; rep(i,0,n) rep(j,0,n) if(i!=j && tab[i].R!=LLinf && tab[j].R!=LLinf && przecinaja(i,j)) { // wypisz(i); // wypisz(j); cout<<"NIE\n"; return ; } // cout<<tab[0].numer<<" "<<tab[0].R<<endl; // for(auto s:niesko) // cout<<tab[s].numer<<endl; rep(i,0,SZ(niesko)-1) tab[niesko[i]].R=tab[niesko[i+1]].x-tab[niesko[i]].x; // cout<<tab[0].numer<<" "<<tab[0].R<<endl; // cout<<"E"; LL yy=0LL; LL xx=0LL; LL XX=tab[0].x; LL YY=tab[0].y; rep(i,0,n) if(i!=niesko.back()) { yy=max(yy,tab[i].y+tab[i].R); xx=max(xx,tab[i].x+tab[i].R); } tab[niesko.back()].R=max(xx-tab[niesko.back()].x,yy-tab[niesko.back()].y); LL pole=0LL; rep(i,0,n) { yy=max(yy,tab[i].y+tab[i].R); xx=max(xx,tab[i].x+tab[i].R); XX=min(XX,tab[i].x); YY=min(YY,tab[i].y); pole+=tab[i].R*tab[i].R; } pole-=(xx-XX)*(yy-YY); if(pole!=0) { cout<<"NIE\n"; return ; } rep(i,0,n) rep(j,0,n) if(i!=j && przecinaja(i,j)) { cout<<"NIE\n"; return ; } // cout<<tab[0].numer<<" "<<tab[0].R<<endl; rep(i,0,n) odp[tab[i].numer]=tab[i].R; cout<<"TAK "; rep(i,0,n) cout<<odp[i]<<" "; cout<<"\n"; } int main() { _upgrade int t; cin>>t; while(t--) solve(); return 0; }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 | #include<bits/stdc++.h> #define rep(i,a,b) for(int i=a;i<b;i++) #define per(i,a,b) for(int i=a;i>b;i--) #define repLL(i,a,b) for(LL i=(LL)a;i<(LL)b;i++) #define perLL(i,a,b) for(LL i=(LL)a;i>(LL)b;i--) #define debug5(a,b,c,d,e) cerr<<#a<<": "<<a<<" "<<#b<<": "<<b<<" "<<#c<<": "<<c<<" "<<#d<<": "<<d<<" "<<#e<<": "<<e<<endl; #define debug4(a,b,c,d) cerr<<#a<<": "<<a<<" "<<#b<<": "<<b<<" "<<#c<<": "<<c<<" "<<#d<<": "<<d<<endl; #define debug3(a,b,c) cerr<<#a<<": "<<a<<" "<<#b<<": "<<b<<" "<<#c<<": "<<c<<endl; #define debug2(a,b) cerr<<#a<<": "<<a<<" "<<#b<<": "<<b<<endl; #define debug(a) cerr<<#a<<": "<<a<<endl; #define pb push_back #define mp make_pair #define SZ(x) ((int)(x).size()) #define ALL(x) x.begin(),x.end() #define fi first #define se second #define _upgrade ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); using namespace std; typedef long long LL; typedef pair<int,int> PII; typedef pair<LL,LL> PLL; typedef vector<PII> VPII; typedef vector<PLL> VPLL; typedef vector<LL> VLL; typedef vector<int> VI; typedef vector<string> VS; typedef vector<char> VC; typedef long double LD; typedef pair<LD,LD> PLD; typedef vector<LD> VLD; typedef vector<PLD> VPLD; const int maxn=(5e3)+7; const int inf=(1e9)+7; const LL LLinf=(1e18)+7; const LD eps=1e-9; const LL mod=1e9+7; // ***************************** CODE ***************************** // struct punkt { LL x,y; LL r; LL R; int numer; bool operator< ( const punkt a ) const { if(a.x!=x) return x<a.x; return y<a.y; } }; LL odp[maxn]; punkt tab[maxn]; int n; LL ogarnij(PLL a,PLL b) { if(a.fi>b.fi || a.se>b.se) return LLinf; return max(b.fi-a.fi,b.se-a.se); } void spr(int a,int b) { if(tab[b].R<LLinf) { LL dlu=ogarnij({tab[a].x,tab[a].y},{tab[b].x,tab[b].y}); dlu=max(dlu,ogarnij({tab[a].x,tab[a].y},{tab[b].x+tab[b].r,tab[b].y})); dlu=max(dlu,ogarnij({tab[a].x,tab[a].y},{tab[b].x,tab[b].y+tab[b].r})); tab[a].r=min(tab[a].r,dlu); } else { // cout<<a<<" "<<b<<" "<<tab[a].r<<" "; tab[a].r=min(tab[a].r,ogarnij({tab[a].x,tab[a].y},{tab[b].x,tab[b].y})); // cout<<tab[a].r<<endl; } } bool pun(int a, PLL b) { if(tab[a].x<b.fi && tab[a].x+tab[a].R>b.fi && tab[a].y<b.se && tab[a].y+tab[a].R>b.se) return 1; return 0; } bool przecinaja(int a,int b) { if(pun(a,{tab[b].x,tab[b].y}) ||pun(a,{tab[b].x+tab[b].R,tab[b].y}) ||pun(a,{tab[b].x,tab[b].y+tab[b].R}) ||pun(a,{tab[b].x+tab[b].R,tab[b].y+tab[b].R}) ) return 1; return 0; } void wypisz(int a) { cout<<tab[a].x<<" "<<tab[a].y<<" "<<tab[a].R<<endl; } inline void solve() { cin>>n; rep(i,0,n) { cin>>tab[i].x>>tab[i].y; tab[i].R=tab[i].r=LLinf; tab[i].numer=i; } sort(tab,tab+n); VI niesko; rep(i,0,n) rep(j,0,n) if(i!=j) spr(i,j); rep(i,0,n) { tab[i].R=tab[i].r; // cout<<tab[i].numer<<" "<<tab[i].R<<endl; if(tab[i].R==LLinf) niesko.pb(i); else rep(j,0,n) if(i!=j && tab[j].R==LLinf) spr(j,i); } // cout<<tab[0].numer<<" "<<tab[0].R<<endl; rep(i,0,n) rep(j,0,n) if(i!=j && tab[i].R!=LLinf && tab[j].R!=LLinf && przecinaja(i,j)) { // wypisz(i); // wypisz(j); cout<<"NIE\n"; return ; } // cout<<tab[0].numer<<" "<<tab[0].R<<endl; // for(auto s:niesko) // cout<<tab[s].numer<<endl; rep(i,0,SZ(niesko)-1) tab[niesko[i]].R=tab[niesko[i+1]].x-tab[niesko[i]].x; // cout<<tab[0].numer<<" "<<tab[0].R<<endl; // cout<<"E"; LL yy=0LL; LL xx=0LL; LL XX=tab[0].x; LL YY=tab[0].y; rep(i,0,n) if(i!=niesko.back()) { yy=max(yy,tab[i].y+tab[i].R); xx=max(xx,tab[i].x+tab[i].R); } tab[niesko.back()].R=max(xx-tab[niesko.back()].x,yy-tab[niesko.back()].y); LL pole=0LL; rep(i,0,n) { yy=max(yy,tab[i].y+tab[i].R); xx=max(xx,tab[i].x+tab[i].R); XX=min(XX,tab[i].x); YY=min(YY,tab[i].y); pole+=tab[i].R*tab[i].R; } pole-=(xx-XX)*(yy-YY); if(pole!=0) { cout<<"NIE\n"; return ; } rep(i,0,n) rep(j,0,n) if(i!=j && przecinaja(i,j)) { cout<<"NIE\n"; return ; } // cout<<tab[0].numer<<" "<<tab[0].R<<endl; rep(i,0,n) odp[tab[i].numer]=tab[i].R; cout<<"TAK "; rep(i,0,n) cout<<odp[i]<<" "; cout<<"\n"; } int main() { _upgrade int t; cin>>t; while(t--) solve(); return 0; } |