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
#include <iostream>
#include <vector>

using namespace std;

struct Company
{
	int w1, w2, h1, h2;
	
	bool IsGreater(Company& a)
	{
		if(w1 < a.w1)return true;
		else if(w1 > a.w1)return false;
		if(w2 > a.w2)return true;
		else if(w2 < a.w2)return false;
		if(h1 < a.h1)return true;
		else if(h1 > a.h1)return false;
		if(h2 > a.h2)return true;
		else if(h2 < a.h2)return false;
		return false;
	}
	
	bool Encloses(Company& a)
	{
		return w1 <= a.w1 && w2 >= a.w2 && h1 <= a.h1 && h2 >= a.h2;
	}
	
	Company()
	{
		w1 = 1<<30;
		w2 = 0;
		h1 = 1<<30;
		h2 = 0;
	}
};

int main()
{
	int k;
	cin>>k;
	for(int i = 0; i < k; i++)
	{
		int n;
		cin>>n;
		vector<Company> vec(n);
		Company bestCompany, bestStats;
		for(int i = 0; i < n; i++)
		{
			cin>>vec[i].w1>>vec[i].w2>>vec[i].h1>>vec[i].h2;
			if(vec[i].w1 < bestStats.w1)bestStats.w1 = vec[i].w1;
			if(vec[i].w2 > bestStats.w2)bestStats.w2 = vec[i].w2;
			if(vec[i].h1 < bestStats.h1)bestStats.h1 = vec[i].h1;
			if(vec[i].h2 > bestStats.h2)bestStats.h2 = vec[i].h2;
			if(vec[i].IsGreater(bestCompany))bestCompany = vec[i];
		}
		if(bestCompany.Encloses(bestStats))cout<<"TAK\n";
		else cout<<"NIE\n";
	}
	return 0;
}