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

using namespace std;

int n, z;
class P {
	public:
	int r, d, id;
	P(int _d, int _r, int _id):r(_r), d(_d), id(_id) {};
};
class U {
	public:
	bool operator()(const P &f, const P &s)
	{
//		if (f.d < s.d && f.r > 0 && f.r >= s.r) return true;
//		  if (f.d < s.d && f.r > 0 && f.r < s.r) return false;
		if (f.d < s.d && f.r > 0) return true;
		  if (s.d < f.d && s.r > 0) return false;

		if (f.d == s.d && f.r > 0 && f.r >= s.r) return true;
		  if (f.d == s.d && f.r > 0 && f.r < s.r) return false;

		if (f.r > 0) return true;
		  if (s.r >= 0) return false;

		if (f.d > s.d) return true;
		  if (s.d > f.d) return false;

		if (f.d == s.d && f.r >= s.r) return true;
		return false;
	}
};


vector <P> v;
int main()
{
	scanf("%d %d", &n, &z);
	int d, a;
	for (int i = 0; i < n; i++)
	{
		scanf("%d %d", &d, &a);
		P p(d, a-d, i+1);
		v.push_back(p);
	}
	sort(v.begin(), v.end(), U());
	for (int i = 0; i < n; i++)
	{
		z -= v[i].d;
		if (z <= 0)
		{
			printf("NIE\n");
			return 0;
		}
		z += v[i].d;
		z += v[i].r;
		if (z <= 0)
		{
			printf("NIE\n");
			return 0;
		}
	}
	printf("TAK\n");
	for (int i = 0; i < n; i++)
	{
		printf("%d ", v[i].id);
	}
			
	return 0;
}