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
#include <cstdio>
#include <algorithm>
using namespace std;

struct potwor{
	int obrazenia;
	int pozycja;
	int bilans;
};
potwor tab[100005];
int n,z,a,b,c;
bool possible;
bool sort3(potwor a, potwor b)
{
	//bool as,bs; //astate bstate, 0 dodatnie , 1 ujemne;
	if(a.bilans<0)
	{
		if(b.bilans>=0)
		{
			return false;
		}
		else
		{
			if(a.obrazenia>b.obrazenia)
			return true;
			else return false;
		}
	}
	else
	{
		if(b.bilans>=0)
		{
			if(a.obrazenia<b.obrazenia)
			return true;
			else return false;
		}
		else
		{
			return true;
		}
	}
	
}

int main()
{
	scanf("%d %d", &n, &z);
	for(int i=0; i<n; i++)
	{
		scanf("%d %d", &a, &b);
		c=b-a;
		tab[i].obrazenia=a;
		tab[i].pozycja=i;
		tab[i].bilans=c;
		
	}
	possible=true;
	sort(tab, tab+n, sort3);
	/*for(int i=0; i<n; i++)
	{
		printf("%d %d #", tab[i].obrazenia, tab[i].obrazenia+tab[i].bilans);
	}*/
	for(int i=0; i<n; i++)
	{
		if(z<=tab[i].obrazenia)
		{
			possible=false;
			break;
		}
		else
		z+=tab[i].bilans;
	}
	if(possible)
	{
		printf("TAK\n");
		for(int i=0; i<n; i++)
	{
	printf("%d ", tab[i].pozycja+1);
	}
	}
	else
	printf("NIE\n");
	
	
}