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 <iostream>
#include <vector>
#include <algorithm>
using namespace std;
#define VAR(i,n) __typeof(n) i=(n)
#define FOREACH(i,n) for(VAR(i,(n).begin());i!=(n).end();i++)
#define REP(i,n) for(int i=0;i<n;i++)
#define SIZE(n) (int)(n).size()
#define PB push_back
#define MP make_pair
#define ST first
#define ND second
const int M1=100007,INF=1000000000;
long long n,z,sum=0;
vector< pair<pair<int,int>,int> >WaDod,WaUje;
vector<int>odp,odp2;
void main2()
{
	cin>>n>>z;
	WaDod.reserve(n);
	WaUje.reserve(n);
	REP(i,n)
	{
		pair<int,int>a;
		cin>>a.ST>>a.ND;
		int roz=a.ND-a.ST;
		if (roz>=0)WaDod.PB(MP(MP(a.ST,roz),i+1));
		else WaUje.PB(MP(MP(a.ND,-roz),i+1));
	}
	sort(WaDod.begin(),WaDod.end());
	reverse(WaDod.begin(),WaDod.end());
	while(!WaDod.empty())
	{
		if (z-WaDod.back().ST.ST>0)
		{
			z+=WaDod.back().ST.ND;
			odp.PB(WaDod.back().ND);
			WaDod.pop_back();
		}
		else goto kon;
	}
	sort(WaUje.begin(),WaUje.end());
	reverse(WaUje.begin(),WaUje.end());
	FOREACH(i,WaUje)
		sum+=i->ST.ND;
	z=z-sum;
	while(!WaUje.empty())
	{
		if (z-WaUje.back().ST.ST>0)
		{
			z+=WaUje.back().ST.ND;
			odp2.PB(WaUje.back().ND);
			WaUje.pop_back();
		}
		else goto kon;
	}
	cout<<"TAK"<<endl;
	FOREACH(i,odp)
		cout<<*i<<" ";
	for(auto i=odp2.rbegin();i!=odp2.rend();i++)
		cout<<*i<<" ";
	cout<<endl;
	return;
	kon:;
	cout<<"NIE"<<endl;
	return;
}
int main()
{
	ios_base::sync_with_stdio(0);
	main2();
}