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
#include <bits/stdc++.h>
#include <queue>
#define INF 99999999
#define LL long long
using namespace std;

LL pocz[1000100];
LL konc[1000100];

void clear(){
  for(LL i=0;i<1000010;i++){
    pocz[i]=0;
    konc[i]=0;
  }
}

int main(){
    ios_base::sync_with_stdio(false);
    LL t,n,x,y,z;
    cin >> t;
    for(LL l=0;l<t;l++){
      LL mocpocz=0,mockonc=0,rozmiar=0;
      bool bul = true;
      cin >> n;
      for(LL i=0;i<n;i++){
        cin >> x >> y >> z;
        pocz[y]+=x;
        konc[z]+=x;
        mocpocz+=(x*y);
        mockonc+=(x*z);
        rozmiar+=x;
      }
      if(mocpocz!=mockonc){
        cout << "NIE" << "\n";
        continue;
      }
      LL k1=0,k2=0,m1=0,m2=0;
      for(LL i=1000002;i>=0;i--){
        m1+=k1;
        m2+=k2;
        k1+=pocz[i];
        k2+=konc[i];
        if(m1<m2){
          bul = false;
        }
      }
      if(bul)
        cout << "TAK" << "\n";
      else
        cout << "NIE" << "\n";
      clear();
    }
    return 0;
}