#include <iostream> #include <algorithm> using namespace std; int demedz[100050]; struct niewiem { int eliksir; int wspolrzedna; }; niewiem tab[100050]; bool compare(niewiem a, niewiem b) { return a.eliksir > b.eliksir; } int main() { int d; // liczba potworow int a; // liczba zycia int sum_hape=0; int demedz_hape=0; cin >> d >> a; sum_hape=a; for (int i=0; i<d; i++) { cin >> demedz[i]; demedz_hape=demedz_hape+demedz[i]; cin >> tab[i].eliksir; sum_hape=sum_hape+tab[i].eliksir; tab[i].wspolrzedna=i+1; } if (demedz_hape>=sum_hape) cout << "NIE"; else { sort (tab, tab+d, compare); cout << "TAK" << endl; for (int j=0; j<d; j++) { cout << tab[j].wspolrzedna << " "; } } //system ("pause"); 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 | #include <iostream> #include <algorithm> using namespace std; int demedz[100050]; struct niewiem { int eliksir; int wspolrzedna; }; niewiem tab[100050]; bool compare(niewiem a, niewiem b) { return a.eliksir > b.eliksir; } int main() { int d; // liczba potworow int a; // liczba zycia int sum_hape=0; int demedz_hape=0; cin >> d >> a; sum_hape=a; for (int i=0; i<d; i++) { cin >> demedz[i]; demedz_hape=demedz_hape+demedz[i]; cin >> tab[i].eliksir; sum_hape=sum_hape+tab[i].eliksir; tab[i].wspolrzedna=i+1; } if (demedz_hape>=sum_hape) cout << "NIE"; else { sort (tab, tab+d, compare); cout << "TAK" << endl; for (int j=0; j<d; j++) { cout << tab[j].wspolrzedna << " "; } } //system ("pause"); return 0; } |