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
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
#include <iostream>
#include <set>

using namespace std;

int liczbaFirm;

struct Szerokosci {
    int firma;
    int pocz;
    int kon;
};
bool operator < (Szerokosci s1, Szerokosci s2) {
    if(s1.pocz < s2.pocz) {
        return true;
    }
//    if(s1.pocz == s2.pocz && s1.kon == s2.kon) {
//        return s1.firma > s2.firma;
//    }
    if (s1.pocz == s2.pocz) {
        return s1.kon > s2.kon;
    }

    return false;
}

struct Wysokosci {
    int firma;
    int pocz;
    int kon;
};

bool operator < (Wysokosci w1, Wysokosci w2) {
    if(w1.pocz < w2.pocz) {
        return true;
    }
//    if(w1.pocz == w2.pocz && w1.kon == w2.kon) {
//        return w1.firma < w2.firma;
//    }
    if (w1.pocz == w2.pocz) {
        return w1.kon > w2.kon;
    }
    return false;
}

int maxSzer = 0;
int maxWys = 0;

multiset<Szerokosci> szer;
multiset<Wysokosci> wys;

void wczytaj() {
    szer.clear();
    wys.clear();
    maxSzer = 0;
    maxWys = 0;
    cin >> liczbaFirm;
    Szerokosci s;
    Wysokosci w;
    for(int i = 0; i < liczbaFirm; ++i) {
        int w1,w2,h1,h2;
        cin >> w1 >> w2 >> h1 >> h2;
        s.firma = i;
        s.pocz = w1;
        s.kon = w2;
        szer.insert(s);
        w.firma = i;
        w.pocz = h1;
        w.kon = h2;
        wys.insert(w);

        maxSzer = max(maxSzer, w2);
        maxWys = max(maxWys, h2);
    }
}

void wypisz() {
    for (std::multiset<Szerokosci>::iterator it=szer.begin(); it!=szer.end(); ++it) {
        cout << (*it).pocz << " " << (*it).kon << " " << (*it).firma << endl;
    }
    cout << endl;
    for (std::multiset<Wysokosci>::iterator it=wys.begin(); it!=wys.end(); ++it) {
        cout << (*it).pocz << " " << (*it).kon << " " << (*it).firma << endl;
    }
    cout << endl;

}

int main() {
    ios_base::sync_with_stdio(false);
    int zestawy;
    cin >> zestawy;
    for(int a = 0; a < zestawy; ++a) {
        wczytaj();
        //wypisz();
        std::multiset<Szerokosci>::iterator sz=szer.begin();
        std::multiset<Wysokosci>::iterator wy=wys.begin();


//
//        if((*sz).firma == (*wy).firma && (*sz).kon == maxSzer && (*wy).kon == maxWys){
//            cout << "TAK" << endl;
//        }else {
//            cout << "NIE" << endl;
//        }
        bool jest = false;
       // cout << maxSzer << " " << maxWys << endl;
        if((*sz).firma == (*wy).firma && (*sz).kon == maxSzer && (*wy).kon == maxWys) {
            cout << "TAK" << endl;
            continue;
        }

        while((sz++)!=szer.end() && (*(sz)).pocz == (*(sz--)).pocz &&  (*(sz++)).kon == (*(sz--)).kon) {
            //cout << "jestm" << endl;
            if((*sz).firma == (*wy).firma && (*sz).kon == maxSzer && (*wy).kon == maxWys) {
                cout << "TAK" << endl;
                jest = true;
                break;
            }
            sz++;
        }
        if((*sz).firma == (*wy).firma && (*sz).kon == maxSzer && (*wy).kon == maxWys) {
            cout << "TAK" << endl;
            continue;
        }

        if(jest) {
            continue;
        }
        //sz--;
        // sz--;
        while((wy++)!=wys.end() && (*(wy)).pocz == (*(wy--)).pocz &&  (*(wy++)).kon == (*(wy--)).kon) {
            //cout << "jestm w wys" << endl;
            if((*sz).firma == (*wy).firma && (*sz).kon == maxSzer && (*wy).kon == maxWys) {
                cout << "TAK" << endl;
                jest = true;
                break;
            }
            wy++;
        }
        // wy--;
        if(jest) {
            continue;
        }
        if((*sz).firma == (*wy).firma && (*sz).kon == maxSzer && (*wy).kon == maxWys) {
            cout << "TAK" << endl;
            continue;

        }

        cout << "NIE" << endl;

        //wypisz();
    }
    return 0;
}