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
//Wojciech Opydo id: wojteko10 zad: Lustra [B]
#include<iostream>
#include <stdio.h>
using namespace std;

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



long long int zestawy=0;
cin>>zestawy;

long long int w_min=0, w_max=0, h_min=0, h_max=0;
long long int h1=0, h2=0, w1=0, w2=0;
bool odp=true, odp2=false;

long long int n=0;
for(long long int j=0;j<zestawy;j++)
{
    cin>>n;

    w_min=0, w_max=0, h_min=0, h_max=0;
    h1=0, h2=0, w1=0, w2=0;
    cin>>w1>>w2>>h1>>h2;
    w_min=w1;
    w_max=w2;
    h_min=h1;
    h_max=h2;

    odp=true, odp2=false;


    for(long long int i=0;i<n-1;i++)
    {

       // cout<<"ROBIE"<<endl;
        cin>>w1>>w2>>h1>>h2;
        odp2=false;

        if(w1<=w_min && w2>=w_max && h1<=h_min && h2>=h_max)
        {
            w_min=w1;
            w_max=w2;
            h_min=h1;
            h_max=h2;
            odp=true;
            odp2=true;

        }

        if(w1<w_min)
        {
            w_min=w1;
            odp=false;
        }

        if(w2>w_max)
        {
            w_max=w2;
            odp=false;

        }
        if(h1<h_min)
        {
            h_min=h1;
            odp=false;
        }
        if(h2>h_max)
        {
            h_max=h2;
            odp=false;

        }
        if(odp2)
        odp=true;

     //cout<<"aktualnie: "<<w_min<<w_max<<h_min<<h_max<<endl;
    }
        //cout<<w_min<<w_max<<h_min<<h_max<<endl;
        if(odp)
        cout<<"TAK\n";
        else
        cout<<"NIE\n";
}


}