#include<algorithm>
#include<bitset>
#include<cassert>
#include<complex>
#include<cstdio>
#include<cstring>
#include<iomanip>
#include<iostream>
#include<map>
#include<queue>
#include<set>
#include<stack>
#include<string>
#include<vector>
#define FOR(i, a, b) for(int i =(a); i <=(b); ++i)
#define FORD(i, a, b) for(int i = (a); i >= (b); --i)
#define REP(i, n) for(int i = 0;i <(n); ++i)
#define VAR(v, i) __typeof(i) v=(i)
#define FORE(i, c) for(VAR(i, (c).begin()); i != (c).end(); ++i)
#define ALL(x) (x).begin(), (x).end()
#define SZ(x) ((int)(x).size())
#define PB push_back
#define MP make_pair
#define X first
#define Y second
#define debug(x) {cerr <<#x <<" = " <<x <<endl; }
#define debugv(x) {{cerr <<#x <<" = "; FORE(itt, (x)) cerr <<*itt <<", "; cerr <<endl; }}
using namespace std;
typedef long long LL;
typedef long double LD;
typedef pair<int, int> PII;
typedef vector<int> VI;
template<class C> void mini(C&a4, C b4){a4=min(a4, b4); }
template<class C> void maxi(C&a4, C b4){a4=max(a4, b4); }
template<class T1, class T2>
ostream& operator<< (ostream &out, pair<T1, T2> pair) { return out << "(" << pair.X << ", " << pair.Y << ")";}
int main2() {
return 0;
};
vector<pair<PII, int> > positive;
vector<pair<PII,int> > negative;
vector<int> res;
int main(){
int n, z;
scanf("%d %d", &n, &z);
REP(i,n) {
int d, a;
scanf("%d %d", &d, &a);
if(a - d >= 0) {
positive.PB(MP(MP(d, a),i));
} else {
negative.PB(MP(MP(a, d),i));
};
};
sort(ALL(positive));
sort(ALL(negative));
for(auto& q : positive) {
if(z <= q.X.X) {
printf("NIE\n");
return 0;
} else {
z = z - q.X.X + q.X.Y;
res.PB(q.Y);
};
};
reverse(ALL(negative));
for(auto& q : negative) {
if(z <= q.X.Y) {
printf("NIE\n");
return 0;
} else {
z = z - q.X.Y + q.X.X;
res.PB(q.Y);
};
};
printf("TAK\n");
for(int i : res) {
printf("%d ", i+1);
};
printf("\n");
return 0;
}
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 86 87 88 89 90 91 | #include<algorithm> #include<bitset> #include<cassert> #include<complex> #include<cstdio> #include<cstring> #include<iomanip> #include<iostream> #include<map> #include<queue> #include<set> #include<stack> #include<string> #include<vector> #define FOR(i, a, b) for(int i =(a); i <=(b); ++i) #define FORD(i, a, b) for(int i = (a); i >= (b); --i) #define REP(i, n) for(int i = 0;i <(n); ++i) #define VAR(v, i) __typeof(i) v=(i) #define FORE(i, c) for(VAR(i, (c).begin()); i != (c).end(); ++i) #define ALL(x) (x).begin(), (x).end() #define SZ(x) ((int)(x).size()) #define PB push_back #define MP make_pair #define X first #define Y second #define debug(x) {cerr <<#x <<" = " <<x <<endl; } #define debugv(x) {{cerr <<#x <<" = "; FORE(itt, (x)) cerr <<*itt <<", "; cerr <<endl; }} using namespace std; typedef long long LL; typedef long double LD; typedef pair<int, int> PII; typedef vector<int> VI; template<class C> void mini(C&a4, C b4){a4=min(a4, b4); } template<class C> void maxi(C&a4, C b4){a4=max(a4, b4); } template<class T1, class T2> ostream& operator<< (ostream &out, pair<T1, T2> pair) { return out << "(" << pair.X << ", " << pair.Y << ")";} int main2() { return 0; }; vector<pair<PII, int> > positive; vector<pair<PII,int> > negative; vector<int> res; int main(){ int n, z; scanf("%d %d", &n, &z); REP(i,n) { int d, a; scanf("%d %d", &d, &a); if(a - d >= 0) { positive.PB(MP(MP(d, a),i)); } else { negative.PB(MP(MP(a, d),i)); }; }; sort(ALL(positive)); sort(ALL(negative)); for(auto& q : positive) { if(z <= q.X.X) { printf("NIE\n"); return 0; } else { z = z - q.X.X + q.X.Y; res.PB(q.Y); }; }; reverse(ALL(negative)); for(auto& q : negative) { if(z <= q.X.Y) { printf("NIE\n"); return 0; } else { z = z - q.X.Y + q.X.X; res.PB(q.Y); }; }; printf("TAK\n"); for(int i : res) { printf("%d ", i+1); }; printf("\n"); return 0; } |
polski