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
#include <cstdio>
#include <vector>
#include <algorithm>

using namespace std;

const int N = 1000*1000+10;
const int M = 102;

pair <int,int> Zap[N];
vector < int > Pocz[N];
vector < int > Kon[N];
int Otwarte[M];
vector < pair <int,int> > Kol;


void Wczytaj(int n,int m){
	int i,p,k,c;
	for(i=0; i<n; i++){
		scanf("%d%d%d", &p,&k,&c);
		p++;
		Zap[i] = make_pair(c,k-p+1);
		Pocz[p].push_back(i);
		Kon[k].push_back(i);
	}
}

void Uzupelnij(int m){
	int i,j,k;
	Kol.clear();
	for(j=0; j<M; j++){
		if(Otwarte[j] && Zap[j].second-Zap[j].first >= 0) Kol.push_back(make_pair(Zap[j].second-Zap[j].first,j));
	}
	sort( Kol.begin(), Kol.end() );
	for(j=0; j<Kol.size(); j++){
		k = Kol[j].second;
		if( m>0 && Zap[k].first > 0){
			Zap[k].first--; m--;
		}
		Zap[k].second--;
	}
}

bool Solve(int n,int m){
	int i,j;
	for(i=0; i<N; i++){
		for(j=0; j<Pocz[i].size(); j++){
			Otwarte[ Pocz[i][j] ] = 1;
		}
		Uzupelnij(m);
		for(j=0; j<Kon[i].size(); j++){
			if( Zap[ Kon[i][j] ].first > 0 ) return false;
			Otwarte[ Kon[i][j] ] = 0;
		}
	}
	return true;
}

int main(){
	int n,m;
	scanf("%d%d", &n,&m);
	Wczytaj(n,m);
	if( Solve(n,m) ) printf("TAK\n");
	else printf("NIE\n");
	return 0;
}