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
217
218
219
#include<bits/stdc++.h>
#define rep(i,k,n) for(ll i= (ll) k;i< (ll) n;i++)
#define all(v) (v).begin(), (v).end()
#define SZ(v) (int)((v).size())
#define pb push_back
#define ft first
#define sd second
typedef long long ll;
typedef unsigned long long ull;
typedef long double ld;
const long long INF = 4e18L + 1;
const int IINF = 2e9 + 1;

using namespace std;

template<class TH> void _dbg(const char *sdbg, TH h){ cerr<<sdbg<<'='<<h<<endl; }
template<class TH, class... TA> void _dbg(const char *sdbg, TH h, TA... a) {
  while(*sdbg!=',')cerr<<*sdbg++;
  cerr<<'='<<h<<','; _dbg(sdbg+1, a...);
}

#ifdef LOCAL
#define DBG(...) _dbg(#__VA_ARGS__, __VA_ARGS__)
#else
#define DBG(...)
#define cerr if(0)cout
#endif

vector < ll > sprawdz(vector < pair<ll, ll> >& V, ll dl)//wlacznie z dl
{
	vector < ll > odp;
	set < pair < ll, pair < ll, ll > > > S;
	S.insert({0, {0, dl}});
	int ind = 0;
	while(!S.empty())
	{
		vector < pair < ll, ll > > przedzialy;
		auto it = S.begin();
		przedzialy.pb(it->sd);
		ll t = it->ft;
		S.erase(it);
		while(SZ(S) > 0)
		{
			it = S.begin();
			if (it->ft != t) 
				break;
			auto para = it->sd;
			S.erase(it);
			if (para.ft-1 == przedzialy.back().sd)
				przedzialy.back().sd = para.sd;
			else
				przedzialy.pb(para);
		}
		
		if (ind == SZ(V))
		{
			if (przedzialy[0].ft == 0 && przedzialy[0].sd == dl)
				return odp;
			else
				return vector<ll>(0);
		}
		if (V[ind].ft != t)
			return vector<ll>(0);
		reverse(all(przedzialy));
		while(ind < SZ(V) && V[ind].ft == t)
		{
			if ( SZ(przedzialy) == 0)
				return vector<ll>(0);
			if (przedzialy.back().ft != V[ind].sd)
				return vector<ll>(0);
				
			int maks = dl;//dokad moge siegac
			if (ind+1 < SZ(V) && V[ind+1].ft == t)
				maks = V[ind+1].sd-1;
			int dl_boku;
			if (maks >= przedzialy.back().sd)
			{
				maks = przedzialy.back().sd;
				przedzialy.pop_back();
				dl_boku = maks - V[ind].sd + 1;
			}
			else
			{
				dl_boku = maks - V[ind].sd + 1;
				przedzialy.back().ft = maks+1;
			}
			odp.pb(maks - V[ind].sd + 1);
			S.insert({V[ind].ft+dl_boku, {V[ind].sd, V[ind].sd+dl_boku-1}});
			ind++;
		}
		if (SZ(przedzialy) > 0)
			return vector<ll>(0);
		
	}
	
	
	return vector<ll>(0);
}

vector < ll > licz(int n, vector < pair < ll, ll > > V, vector < pair < ll, ll > > V1)
{
	pair<ll, ll> pkt = V[0];
	for(auto& el : V) if (el.ft==0) pkt=el;
		
	
	set < ll > kand;
	vector < ll > odp;
	bool ok = true;
	for(int i=1; i<n; i++)
	{
		if (V[i].sd < V[0].sd)
		{
			ok = false;
			break;
		}
		ll k = V[i].ft - V[0].ft;
		if (k > 0)
			kand.insert(k);
	}
	if (ok == false)
	{
		return vector<ll>(0);
	}
	for(auto& el : kand)
	{
		auto vec = sprawdz(V, el + pkt.sd-1);
		if (SZ(vec))
		{
			odp = vec;
			break;
		}
	}
	if (SZ(odp) == 0)
		return vector<ll>(0);
	assert(SZ(odp) == n);
	vector < ll > odp2(n);
	for(int i=0; i<n; i++)
	{
		for(int j=0; j<n; j++)
		{
			if (V1[i] == V[j])
				odp2[i] = odp[j];
		}
	}
	return odp2;
}


int main()
{
#ifndef LOCAL
    ios_base::sync_with_stdio(0);
    cin.tie(0);
#endif
	int t;
	cin>>t;
	while(t--)
	{
		ll n;
		cin>>n;
		vector < pair < ll, ll > > V(n);
		vector < pair < ll, ll > > V1(n);
		for(auto& el : V)
			cin>>el.ft>>el.sd;
		if (n==1)
		{
			cout<<"TAK 1\n";
			continue;
		}
		V1 = V;
		sort(all(V));
		auto pkt = V[0];
		for(auto& el : V) {el.ft-=pkt.ft; el.sd -= pkt.sd;}
		for(auto& el : V1) {el.ft-=pkt.ft; el.sd -= pkt.sd;}
		
		vector < ll > odp = licz(n, V, V1);
		if (SZ(odp) == 0)
		{
			for(auto& el : V) swap(el.ft, el.sd);
			for(auto& el : V1) swap(el.ft, el.sd);
			sort(all(V));
			odp = licz(n, V, V1);
		}
		
		/*
		if (SZ(odp))
		{
			vector < ll > VV(100000);
			for(int i=0; i<n; i++)
			{
				int o = odp[i]; 
				for(int j=V1[i].ft; j<V1[i].ft+o; j++)
					VV[j] += o;
			}
			for(int i=0; i<SZ(VV); i++)
				if (VV[i])
					DBG(i, VV[i]);
		}
		*/
		
		
		//odwrocic plaszczyzne?
		if (SZ(odp))
		{
			cout<<"TAK ";
			for(auto& el : odp)
				cout<<el<<" ";
			cout<<"\n";
		}
		else
		{
			cout<<"NIE\n";
		}
		
	}
	

	return 0;
}