#include <cstdio> #include <algorithm> int kolejnosc[100005]; using namespace std; int main() { int n, hp; int x=0; scanf("%d%d", &n, &hp); int maxpot[n]; pair <int, int> zombie[n]; for(int i=0; i<n; i++){ scanf("%d", &zombie[i].first); scanf("%d", &zombie[i].second); } int tab[n]; for(int i=0; i<n; i++) tab[i]=zombie[i].second; sort(tab, tab+n); for(int i=0; i<n; i++){ maxpot[i]=tab[i]; } int c=n-1; for(int j=0; j<n; j++){ for(int i=0; i<n; i++){ if(zombie[i].second==maxpot[c] && zombie[i].first<hp){ c--; kolejnosc[x]=i+1; x++; hp=hp-zombie[i].first; hp=hp+zombie[i].second; } } } if(hp>0){ printf("TAK\n"); for(int i=0; i<n; i++){ printf("%d ", kolejnosc[i]); } } else printf("NIE"); }
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 | #include <cstdio> #include <algorithm> int kolejnosc[100005]; using namespace std; int main() { int n, hp; int x=0; scanf("%d%d", &n, &hp); int maxpot[n]; pair <int, int> zombie[n]; for(int i=0; i<n; i++){ scanf("%d", &zombie[i].first); scanf("%d", &zombie[i].second); } int tab[n]; for(int i=0; i<n; i++) tab[i]=zombie[i].second; sort(tab, tab+n); for(int i=0; i<n; i++){ maxpot[i]=tab[i]; } int c=n-1; for(int j=0; j<n; j++){ for(int i=0; i<n; i++){ if(zombie[i].second==maxpot[c] && zombie[i].first<hp){ c--; kolejnosc[x]=i+1; x++; hp=hp-zombie[i].first; hp=hp+zombie[i].second; } } } if(hp>0){ printf("TAK\n"); for(int i=0; i<n; i++){ printf("%d ", kolejnosc[i]); } } else printf("NIE"); } |