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
#include <iostream>
#include <vector>
#include <algorithm>
#include <cmath>
using namespace std;
struct str
{
	int a; int b; int c; int d;
};

bool por(str a, str b)
{
	if(a.a==b.a)
	{
		if(a.b==b.b)
		{
			if(a.c==b.c)
			{
				return a.d>b.d;
			}
			return a.c<b.c;
		}
		return a.b>b.b;
	}
	return a.a<b.a;
}

vector< str > v;
int main()
{
	ios::sync_with_stdio(0);
	int z; cin>>z; 
	while(z--)
	{
		int M_a = 1000001000;  int M_b = 0; int M_c=1000000001; int M_d=0;
		int n; cin>>n;
		v.clear();
		for(int i=0; i<n; i++)
		{
			str s; 
			cin>>s.a>>s.b>>s.c>>s.d;
			M_a=min(M_a, s.a);
			M_b=max(M_b, s.b);
			M_c = min(M_c, s.c);
			M_d=max(M_d, s.d);
			v.push_back(s );
		}
			sort(v.begin(), v.end(), por);
			if(v[0].a==M_a && v[0].b==M_b && v[0].c==M_c && v[0].d==M_d)
			cout<<"TAK"<<endl;
			else
			cout<<"NIE"<<endl;
	}
	
	return 0;
}