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
#include <iostream>
using namespace std;
int t[4][2];

int main()
{
    ios_base::sync_with_stdio(0);

    int ty, n, w1, w2, h1, h2;
    cin>>ty;//!
    for (int lol=0; lol<ty; lol++)
    {
        t[0][0]=t[2][0]=t[0][1]=t[2][1]=1000000000;//!to beda minima
        t[1][0]=t[3][0]=t[1][1]=t[3][1]=0;

        cin>>n;//!
        for (int lol2=0; lol2<n; lol2++)
        {
            cin>>w1>>w2>>h1>>h2;//!
            if (t[0][0]>=w1 && t[2][0]>=h1 && t[1][0]<=w2 && t[3][0]<=h2)
            {
                t[0][0]=w1;
                t[2][0]=h1;
                t[1][0]=w2;
                t[3][0]=h2;
            }
            if (t[0][1]>w1)
                t[0][1]=w1;
            if (t[2][1]>h1)
                t[2][1]=h1;
            if (t[1][1]<w2)
                t[1][1]=w2;
            if (t[3][1]<h2)
                t[3][1]=h2;
        }
            if (t[0][0]<=t[0][1] && t[2][0]>=t[2][1] && t[1][0]<=t[1][1] && t[3][0]>=t[3][1])
                cout<<"TAK"<<endl;
                else cout<<"NIE"<<endl;
    }
    return 0;
}