#include <bits/stdc++.h> #define f first #define s second #define MP make_pair #define PB push_back #define LL long long #define pii pair<int,int> #define pll pair<LL,LL> #define ALL(V) V.begin(),V.end() #define f1(a,b) for(int a=1;a<=b;a++) #define f0(a,b) for(int a=0;a<b;a++) #define boost ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0) #define endl "\n" using namespace std; const int N=2e3+69, base=1024*4; vector <int> vek,szkal; multiset <pii> dod[N],usu[N]; pii t[N]; int qwe,n,flag; int wyn[N], tree[base*2+69]; bool cmp1(const int &, const int &); bool cmp2(const int &, const int &); inline void czysc(); inline void wypisz(); inline bool test(int); inline void insert(int,int,int); inline int query(int); inline int it(int); int32_t main(void) { boost; srand(2137); //qwe=1; cin>>qwe; while(qwe--) { //n=2000; //if(qwe==3) n=1000; cin>>n; czysc(); f0(i,n) { t[i].f=rand(); t[i].s=rand(); cin>>t[i].f>>t[i].s; vek.PB(i); szkal.PB(t[i].f); } if(n==1) { cout<<"TAK 1\n"; continue; } sort(ALL(szkal)); szkal.resize(distance(szkal.begin(),unique(ALL(szkal)))); sort(ALL(vek),cmp1); int zap=vek[0]; sort(ALL(vek),cmp2); f0(i,n) { if(t[i].f<=t[zap].f) continue; wyn[zap]=-t[zap].f+t[i].f; if(test(t[zap].s-t[zap].f+t[i].f)) { wypisz(); break; } } if(flag==1) continue; for(int i=0;i<vek.size();i++) { if(vek[i]==zap) vek.erase(vek.begin()+i); } if(test(t[zap].s)) { int maa=0; int may=0; f0(i,n-1) { maa=max(maa,t[vek[i]].f+wyn[vek[i]]); may=max(may,t[vek[i]].s); } maa-=t[zap].f; wyn[zap]=maa; if(may<t[zap].s) wypisz(); } if(flag==0) cout<<"NIE\n"; } } inline bool test(int wys) { int m=vek.size(); int iledod=0; int zlee=0; int nis=2e9+69; f0(i,base*2+7) tree[i]=2e9+69; f0(i,n) nis=min(nis,t[i].s); f0(i,n+3) dod[i].clear(); f0(i,n+3) usu[i].clear(); insert(0,m+5,wys); f0(i,m) { LL zm=query(it(t[vek[i]].f)); LL odll=zm-t[vek[i]].s; LL pra=t[vek[i]].f+odll; if(odll<1) zlee=1; if(pra>szkal.back()&&iledod==0) szkal.PB(pra), iledod++; if(lower_bound(ALL(szkal),pra)==upper_bound(ALL(szkal),pra)) zlee=1; wyn[vek[i]]=odll; insert(it(t[vek[i]].f),it(pra)-1,t[vek[i]].s); dod[it(t[vek[i]].f)].insert(MP(t[vek[i]].s,zm)); usu[it(pra)].insert(MP(t[vek[i]].s,zm)); } for(int i=0;i<=szkal.size();i++) { if(dod[i].empty()) continue; int odej=0; for(auto in=dod[i].begin();in!=dod[i].end();in++) { if(odej==1) in--; odej=0; auto zm=in; zm++; if(zm==dod[i].end()) break; if((*in).s>(*zm).f) zlee=1; if((*in).s==(*zm).f) { pii huj=MP((*in).f,(*zm).s); dod[i].erase(in); dod[i].erase(zm); dod[i].insert(huj); in=dod[i].find(huj); odej=1; } } } for(int i=0;i<=szkal.size();i++) { if(usu[i].empty()) continue; int odej=0; for(auto in=usu[i].begin();in!=usu[i].end();in++) { if(odej==1) in--; odej=0; auto zm=in; zm++; if(zm==usu[i].end()) break; if((*in).s>(*zm).f) zlee=1; if((*in).s==(*zm).f) { pii huj=MP((*in).f,(*zm).s); usu[i].erase(in); usu[i].erase(zm); usu[i].insert(huj); in=usu[i].find(huj); odej=1; } } } if(iledod>0) szkal.pop_back(); if(zlee==1) { return 0; } m=szkal.size(); if(dod[0].size()!=1) return 0; if(!usu[0].empty()) return 0; if((*dod[0].begin())!=MP(nis,wys)) return 0; if(usu[m].size()!=1) return 0; if(!dod[m].empty()) return 0; if((*usu[m].begin())!=MP(nis,wys)) return 0; for(int i=1;i<m;i++) { auto it2=dod[i].begin(); for(auto it=usu[i].begin();it!=usu[i].end();it++) { if((*it)!=(*it2)) return 0; it2++; } } return 1; } inline int it(int w) { auto in=lower_bound(ALL(szkal),w); return in-szkal.begin(); } inline void czysc() { flag=0; vek.clear(); szkal.clear(); f0(i,N-3) { t[i]=MP(0,0); wyn[i]=0; } } inline void wypisz() { cout<<"TAK "; f0(i,n) { cout<<wyn[i]<<" "; } cout<<endl; flag=1; } bool cmp1(const int &a, const int &b) { if(t[a].f>t[b].f) return 0; if(t[a].f<t[b].f) return 1; if(t[a].s>t[b].s) return 1; return 0; } bool cmp2(const int &a, const int &b) { if(t[a].s>t[b].s) return 1; if(t[a].s<t[b].s) return 0; if(t[a].f>t[b].f) return 0; return 1; } inline void insert(int l, int p, int val) { l+=base; p+=base; tree[l]=min(tree[l],val); tree[p]=min(tree[p],val); while(l+1<p) { if(l%2==0) tree[l+1]=min(tree[l+1],val); if(p%2==1) tree[p-1]=min(tree[p-1],val); l/=2; p/=2; } } inline int query(int v) { v+=base; int ret=1e9+69; while(v) { ret=min(ret,tree[v]); v/=2; } return ret; }
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 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 | #include <bits/stdc++.h> #define f first #define s second #define MP make_pair #define PB push_back #define LL long long #define pii pair<int,int> #define pll pair<LL,LL> #define ALL(V) V.begin(),V.end() #define f1(a,b) for(int a=1;a<=b;a++) #define f0(a,b) for(int a=0;a<b;a++) #define boost ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0) #define endl "\n" using namespace std; const int N=2e3+69, base=1024*4; vector <int> vek,szkal; multiset <pii> dod[N],usu[N]; pii t[N]; int qwe,n,flag; int wyn[N], tree[base*2+69]; bool cmp1(const int &, const int &); bool cmp2(const int &, const int &); inline void czysc(); inline void wypisz(); inline bool test(int); inline void insert(int,int,int); inline int query(int); inline int it(int); int32_t main(void) { boost; srand(2137); //qwe=1; cin>>qwe; while(qwe--) { //n=2000; //if(qwe==3) n=1000; cin>>n; czysc(); f0(i,n) { t[i].f=rand(); t[i].s=rand(); cin>>t[i].f>>t[i].s; vek.PB(i); szkal.PB(t[i].f); } if(n==1) { cout<<"TAK 1\n"; continue; } sort(ALL(szkal)); szkal.resize(distance(szkal.begin(),unique(ALL(szkal)))); sort(ALL(vek),cmp1); int zap=vek[0]; sort(ALL(vek),cmp2); f0(i,n) { if(t[i].f<=t[zap].f) continue; wyn[zap]=-t[zap].f+t[i].f; if(test(t[zap].s-t[zap].f+t[i].f)) { wypisz(); break; } } if(flag==1) continue; for(int i=0;i<vek.size();i++) { if(vek[i]==zap) vek.erase(vek.begin()+i); } if(test(t[zap].s)) { int maa=0; int may=0; f0(i,n-1) { maa=max(maa,t[vek[i]].f+wyn[vek[i]]); may=max(may,t[vek[i]].s); } maa-=t[zap].f; wyn[zap]=maa; if(may<t[zap].s) wypisz(); } if(flag==0) cout<<"NIE\n"; } } inline bool test(int wys) { int m=vek.size(); int iledod=0; int zlee=0; int nis=2e9+69; f0(i,base*2+7) tree[i]=2e9+69; f0(i,n) nis=min(nis,t[i].s); f0(i,n+3) dod[i].clear(); f0(i,n+3) usu[i].clear(); insert(0,m+5,wys); f0(i,m) { LL zm=query(it(t[vek[i]].f)); LL odll=zm-t[vek[i]].s; LL pra=t[vek[i]].f+odll; if(odll<1) zlee=1; if(pra>szkal.back()&&iledod==0) szkal.PB(pra), iledod++; if(lower_bound(ALL(szkal),pra)==upper_bound(ALL(szkal),pra)) zlee=1; wyn[vek[i]]=odll; insert(it(t[vek[i]].f),it(pra)-1,t[vek[i]].s); dod[it(t[vek[i]].f)].insert(MP(t[vek[i]].s,zm)); usu[it(pra)].insert(MP(t[vek[i]].s,zm)); } for(int i=0;i<=szkal.size();i++) { if(dod[i].empty()) continue; int odej=0; for(auto in=dod[i].begin();in!=dod[i].end();in++) { if(odej==1) in--; odej=0; auto zm=in; zm++; if(zm==dod[i].end()) break; if((*in).s>(*zm).f) zlee=1; if((*in).s==(*zm).f) { pii huj=MP((*in).f,(*zm).s); dod[i].erase(in); dod[i].erase(zm); dod[i].insert(huj); in=dod[i].find(huj); odej=1; } } } for(int i=0;i<=szkal.size();i++) { if(usu[i].empty()) continue; int odej=0; for(auto in=usu[i].begin();in!=usu[i].end();in++) { if(odej==1) in--; odej=0; auto zm=in; zm++; if(zm==usu[i].end()) break; if((*in).s>(*zm).f) zlee=1; if((*in).s==(*zm).f) { pii huj=MP((*in).f,(*zm).s); usu[i].erase(in); usu[i].erase(zm); usu[i].insert(huj); in=usu[i].find(huj); odej=1; } } } if(iledod>0) szkal.pop_back(); if(zlee==1) { return 0; } m=szkal.size(); if(dod[0].size()!=1) return 0; if(!usu[0].empty()) return 0; if((*dod[0].begin())!=MP(nis,wys)) return 0; if(usu[m].size()!=1) return 0; if(!dod[m].empty()) return 0; if((*usu[m].begin())!=MP(nis,wys)) return 0; for(int i=1;i<m;i++) { auto it2=dod[i].begin(); for(auto it=usu[i].begin();it!=usu[i].end();it++) { if((*it)!=(*it2)) return 0; it2++; } } return 1; } inline int it(int w) { auto in=lower_bound(ALL(szkal),w); return in-szkal.begin(); } inline void czysc() { flag=0; vek.clear(); szkal.clear(); f0(i,N-3) { t[i]=MP(0,0); wyn[i]=0; } } inline void wypisz() { cout<<"TAK "; f0(i,n) { cout<<wyn[i]<<" "; } cout<<endl; flag=1; } bool cmp1(const int &a, const int &b) { if(t[a].f>t[b].f) return 0; if(t[a].f<t[b].f) return 1; if(t[a].s>t[b].s) return 1; return 0; } bool cmp2(const int &a, const int &b) { if(t[a].s>t[b].s) return 1; if(t[a].s<t[b].s) return 0; if(t[a].f>t[b].f) return 0; return 1; } inline void insert(int l, int p, int val) { l+=base; p+=base; tree[l]=min(tree[l],val); tree[p]=min(tree[p],val); while(l+1<p) { if(l%2==0) tree[l+1]=min(tree[l+1],val); if(p%2==1) tree[p-1]=min(tree[p-1],val); l/=2; p/=2; } } inline int query(int v) { v+=base; int ret=1e9+69; while(v) { ret=min(ret,tree[v]); v/=2; } return ret; } |