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
#include <cstdio>
#include <algorithm>
#include <vector>
using namespace std;

struct quad
{
    int x[4];
    int& operator[] (int a)
    {
        return x[a];
    }
};

bool fun(quad a,quad b)
{
    if(a[0]<b[0])
        return true;
    else if(a[0]==b[0])
    {
        if(a[2]<b[2])
            return true;
        else if(a[2]==b[2])
        {
            if(a[1]>b[1])
                return true;
            else if(a[1]==b[1])
            {
                if(a[3]>=b[3])
                    return true;
            }
        }
    }
    return false;
}


int main()
{
    int t;
    scanf("%d",&t);
    for(int ti=0;ti<t;++ti)
    {
        int n;
        scanf("%d",&n);
        vector<quad> v;
        v.resize(n);
        for(int i=0;i<n;++i)
            scanf("%d%d%d%d",&v[i][0],&v[i][1],&v[i][2],&v[i][3]);
        sort(v.begin(),v.end(),fun);
        int mx=v[0][1];
        int my=v[0][3];
        int mmy=v[0][2];
        bool odp=true;
        for(int i=1;i<n;++i)
        {
            if(v[i][1]>mx || v[i][3]>my || mmy>v[i][2])
                odp=false;
        }
        if(odp)
            printf("TAK\n");
        else
            printf("NIE\n");
    }
    return 0;
}