#include<cstdio> #include<queue> #include<algorithm> using namespace std; typedef long long LL; struct LLP {LL a;int nr;}; LLP MLP(LL a,int nr) {LLP x;x.a=a;x.nr=nr;return x;} bool operator<(LLP x,LLP y) {return x.a<y.a;} const int S=1<<18; const LL INF=(LL)1<<(LL)50; LL tree[2*S+1000]; priority_queue<LLP> PR[100+2*S]; queue<int> odpowiedz; LL mx(LL a,LL b) {return a>b?a:b;} int dd[1000111]; void insert(int a,LL c) { a+=S; tree[a]=c;a/=2; while(a>0) tree[a]=mx(tree[2*a],tree[2*a+1]),a/=2; } LL query(int a,int b,int &ii) { //printf("QUERY::%d %d: ",a,b); a+=S,b+=S; LL wyn=max(tree[a],tree[b]); int lw=a,pw=b; while(a+1<b) { if(a%2==0&&tree[a+1]>=wyn) wyn=tree[a+1],lw=a+1; if(b%2==1&&tree[b-1]>wyn) wyn=tree[b-1],pw=b-1; a/=2,b/=2; } //printf("%lld ",wyn); if(wyn<0) return wyn; if(tree[lw]>tree[pw]) a=lw; else a=pw; while(a<S) { a+=a; if(tree[a+1]>=wyn) a++; } a-=S; //printf("%d ",a); if(PR[a].empty()) return -INF; //printf("%lld %lld %d",wyn,PR[a].top().a,PR[a].top().nr); odpowiedz.push(PR[a].top().nr); ii=PR[a].top().nr; PR[a].pop(); if(PR[a].empty()) insert(a,-INF); else insert(a,PR[a].top().a); return wyn; } LL quer1(int a,int b,int &ii) { //printf("QUER1::%d %d: ",a,b); a+=S,b+=S; LL wyn=max(tree[a],tree[b]); int lw=a,pw=b; while(a+1<b) { if(a%2==0&&tree[a+1]>=wyn) wyn=tree[a+1],lw=a+1; if(b%2==1&&tree[b-1]>wyn) wyn=tree[b-1],pw=b-1; a/=2,b/=2; } if(tree[lw]>tree[pw]) a=lw; else a=pw; while(a<S) { a+=a; if(tree[a+1]>=wyn) a++; } a-=S;ii=a; //printf("%d %lld ",ii,wyn); return wyn; } main() { int n;LL z;scanf("%d%lld",&n,&z); for(int i=1;i<=2*S;i++) tree[i]=-INF; for(int i=1;i<=n;i++) { LL d, a;scanf("%lld%lld",&d,&a); dd[i]=d; PR[(int)d].push(MLP(a-d,i)); insert((int)d,PR[(int)d].top().a); } //for(int i=0;i<=10;i++) printf("%lld ",tree[i+S]); //puts(""); int n1=n; while(n1--) { int ii=0; LL x=query(0,z-1,ii); //printf("%lld %d\n",x,ii); if(x<0) break; if(x==-INF||z+x<=0) {puts("NIE");return 0;} z+=x; } //printf("%lld\n",z); int mxx=z; for(;mxx>=0;mxx--) if(!PR[mxx].empty()) break; //printf("%d\n",mxx); //for(int i=0;i<=10;i++) printf("%lld ",tree[i+S]); //puts(""); while(z>0) { int ii=0; //printf("%d:::",mxx); LL ww=quer1(0,z-1,ii); if(ww<=-INF) break; if(z+ww<=mxx) { z+=PR[mxx].top().a; odpowiedz.push(PR[mxx].top().nr); //printf("%d %d 1\n",mxx,PR[mxx].top().nr); PR[mxx].pop(); if(PR[mxx].empty()) { insert(mxx,-INF); for(;mxx>=0;mxx--) if(!PR[mxx].empty()) break; } else insert(mxx,PR[mxx].top().a); } else { z+=ww; odpowiedz.push(PR[ii].top().nr); //printf("%d %d 2\n",ii,PR[ii].top().nr); PR[ii].pop(); if(PR[ii].empty()) insert(ii,-INF); else insert(mxx,PR[mxx].top().a); } } if((int)odpowiedz.size()<n||z<=0) {puts("NIE");return 0;} puts("TAK"); while(!odpowiedz.empty()) printf("%d ",odpowiedz.front()),odpowiedz.pop(); puts(""); 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 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 | #include<cstdio> #include<queue> #include<algorithm> using namespace std; typedef long long LL; struct LLP {LL a;int nr;}; LLP MLP(LL a,int nr) {LLP x;x.a=a;x.nr=nr;return x;} bool operator<(LLP x,LLP y) {return x.a<y.a;} const int S=1<<18; const LL INF=(LL)1<<(LL)50; LL tree[2*S+1000]; priority_queue<LLP> PR[100+2*S]; queue<int> odpowiedz; LL mx(LL a,LL b) {return a>b?a:b;} int dd[1000111]; void insert(int a,LL c) { a+=S; tree[a]=c;a/=2; while(a>0) tree[a]=mx(tree[2*a],tree[2*a+1]),a/=2; } LL query(int a,int b,int &ii) { //printf("QUERY::%d %d: ",a,b); a+=S,b+=S; LL wyn=max(tree[a],tree[b]); int lw=a,pw=b; while(a+1<b) { if(a%2==0&&tree[a+1]>=wyn) wyn=tree[a+1],lw=a+1; if(b%2==1&&tree[b-1]>wyn) wyn=tree[b-1],pw=b-1; a/=2,b/=2; } //printf("%lld ",wyn); if(wyn<0) return wyn; if(tree[lw]>tree[pw]) a=lw; else a=pw; while(a<S) { a+=a; if(tree[a+1]>=wyn) a++; } a-=S; //printf("%d ",a); if(PR[a].empty()) return -INF; //printf("%lld %lld %d",wyn,PR[a].top().a,PR[a].top().nr); odpowiedz.push(PR[a].top().nr); ii=PR[a].top().nr; PR[a].pop(); if(PR[a].empty()) insert(a,-INF); else insert(a,PR[a].top().a); return wyn; } LL quer1(int a,int b,int &ii) { //printf("QUER1::%d %d: ",a,b); a+=S,b+=S; LL wyn=max(tree[a],tree[b]); int lw=a,pw=b; while(a+1<b) { if(a%2==0&&tree[a+1]>=wyn) wyn=tree[a+1],lw=a+1; if(b%2==1&&tree[b-1]>wyn) wyn=tree[b-1],pw=b-1; a/=2,b/=2; } if(tree[lw]>tree[pw]) a=lw; else a=pw; while(a<S) { a+=a; if(tree[a+1]>=wyn) a++; } a-=S;ii=a; //printf("%d %lld ",ii,wyn); return wyn; } main() { int n;LL z;scanf("%d%lld",&n,&z); for(int i=1;i<=2*S;i++) tree[i]=-INF; for(int i=1;i<=n;i++) { LL d, a;scanf("%lld%lld",&d,&a); dd[i]=d; PR[(int)d].push(MLP(a-d,i)); insert((int)d,PR[(int)d].top().a); } //for(int i=0;i<=10;i++) printf("%lld ",tree[i+S]); //puts(""); int n1=n; while(n1--) { int ii=0; LL x=query(0,z-1,ii); //printf("%lld %d\n",x,ii); if(x<0) break; if(x==-INF||z+x<=0) {puts("NIE");return 0;} z+=x; } //printf("%lld\n",z); int mxx=z; for(;mxx>=0;mxx--) if(!PR[mxx].empty()) break; //printf("%d\n",mxx); //for(int i=0;i<=10;i++) printf("%lld ",tree[i+S]); //puts(""); while(z>0) { int ii=0; //printf("%d:::",mxx); LL ww=quer1(0,z-1,ii); if(ww<=-INF) break; if(z+ww<=mxx) { z+=PR[mxx].top().a; odpowiedz.push(PR[mxx].top().nr); //printf("%d %d 1\n",mxx,PR[mxx].top().nr); PR[mxx].pop(); if(PR[mxx].empty()) { insert(mxx,-INF); for(;mxx>=0;mxx--) if(!PR[mxx].empty()) break; } else insert(mxx,PR[mxx].top().a); } else { z+=ww; odpowiedz.push(PR[ii].top().nr); //printf("%d %d 2\n",ii,PR[ii].top().nr); PR[ii].pop(); if(PR[ii].empty()) insert(ii,-INF); else insert(mxx,PR[mxx].top().a); } } if((int)odpowiedz.size()<n||z<=0) {puts("NIE");return 0;} puts("TAK"); while(!odpowiedz.empty()) printf("%d ",odpowiedz.front()),odpowiedz.pop(); puts(""); return 0; } |