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

using namespace std;

#define REP(x,n) for(int x = 0; i < (n); ++x)

const int MAXN = 100000 + 5;

int tab[MAXN][4];

int n,t;
int w1_min, w2_max, h1_min, h2_max;



bool  oblicz() {
     
   scanf("%d", &n);

// wczytywanie danych
    REP(i,n)
            scanf("%d %d %d %d", &tab[i][0], &tab[i][1], &tab[i][2], &tab[i][3]);        
    
    
//obliczanie majoranty 
        
    w1_min = tab[0][0];
    w2_max = tab[0][1];
    h1_min = tab[0][2];
    h2_max = tab[0][3];
    
    
    REP(i,n) {
           w1_min = min(w1_min, tab[i][0]);
           w2_max = max(w2_max, tab[i][1]);
            
           h1_min = min(h1_min, tab[i][2]);
           h2_max = max(h2_max, tab[i][3]);      
    }       
        
// sprawdzanie czy istnieje oferta, ktora majoryzuje oferty pozostalych oferentow   
    
    REP(i,n) 
           if ((tab[i][0] ==  w1_min) &&  (tab[i][1] == w2_max)
           && (tab[i][2] ==  h1_min) && (tab[i][3] ==  h2_max)) return true;
        
    return false;    
}

int main(int argc, char *argv[])
{
    scanf("%d", &t);
   
    REP(i,t) { 
      if (oblicz()) puts("TAK");
      else puts("NIE"); 
   }

   return 0;
}