#include <iostream> #include <utility> #include <vector> #include <algorithm> using namespace std; bool zdrowieRosnaco(pair<int, pair<int,int> > i, pair<int, pair<int,int> > j); bool zdrowieMalejaco(pair<int, pair<int,int> > i, pair<int, pair<int,int> > j); bool atakRosnaco(pair<int, pair<int,int> > i, pair<int, pair<int,int> > j); bool atakMalejaco(pair<int, pair<int,int> > i, pair<int, pair<int,int> > j); struct myclass { bool operator() (pair<int, pair<int,int> > i, pair<int, pair<int,int> > j) { return (i.second.second<j.second.second); } } myobject; int main() { ios_base::sync_with_stdio(0); int n, z; cin>>n>>z; vector<pair<int, pair<int,int> > >dDodatnia; vector<pair<int, pair<int,int> > >dZerowa; vector<pair<int, pair<int,int> > >dUjemna; for(int i=1; i<=n; i++) { int a, d; cin>>a>>d; pair<int, pair<int,int> > tmp; tmp.first=i; tmp.second.first=a; tmp.second.second=d; if(a<d) { dDodatnia.push_back(tmp); //cout<<"DODAJE "<<tmp.second.first<<" "<<tmp.second.second<<endl; } else if(a>d) { dUjemna.push_back(tmp); } else { dZerowa.push_back(tmp); } } sort(dDodatnia.begin(), dDodatnia.end(),atakRosnaco); /*cout<<"#DODATNIE"<<endl; for(int i=0; i<dDodatnia.size(); i++) { cout<<dDodatnia[i].first<<": "<<dDodatnia[i].second.first<<" "<<dDodatnia[i].second.second<<endl; }*/ sort(dUjemna.begin(), dUjemna.end(), atakMalejaco); /*cout<<"#UJEMNE"<<endl; for(int i=0; i<dUjemna.size(); i++) { cout<<dUjemna[i].first<<": "<<dUjemna[i].second.first<<" "<<dUjemna[i].second.second<<endl; } cout<<"#ZEROWE"<<endl;*/ /*for(int i=0; i<dZerowa.size(); i++) { cout<<dZerowa[i].first<<": "<<dZerowa[i].second.first<<" "<<dZerowa[i].second.second<<endl; }*/ bool f_1=1; bool f_2=1; bool f_3=1; vector<int> wynik_1; vector<int> wynik_2; vector<int> wynik_3; for(int i=0; i<dDodatnia.size(); i++) { if(dDodatnia[i].second.first<z) { z-=dDodatnia[i].second.first; z+=dDodatnia[i].second.second; wynik_1.push_back(dDodatnia[i].first); } else { f_1=0; break; } } for(int i=0; i<dZerowa.size() && f_1; i++) { if(dZerowa[i].second.first<z) { z-=dZerowa[i].second.first; z+=dZerowa[i].second.second; wynik_2.push_back(dZerowa[i].first); } else { f_2=0; break; } } int z_bc=z; for(int i=0; i<dUjemna.size() && f_2; i++) { if(dUjemna[i].second.first<z) { z-=dUjemna[i].second.first; z+=dUjemna[i].second.second; wynik_3.push_back(dUjemna[i].first); } else { f_3=0; break; } } if(f_3==0) { z=z_bc; f_3=1; wynik_3.clear(); sort(dUjemna.begin(), dUjemna.end(), zdrowieMalejaco); for(int i=0; i<dUjemna.size() && f_2; i++) { if(dUjemna[i].second.first<z) { z-=dUjemna[i].second.first; z+=dUjemna[i].second.second; wynik_3.push_back(dUjemna[i].first); }//POPRAWIC NA WIECEJ WARIANTOW else { f_3=0; break; } } } if(f_1 && f_2 && f_3) { cout<<"TAK"<<endl; for(int i=0; i<wynik_1.size(); i++) cout<<wynik_1[i]<<" "; for(int i=0; i<wynik_2.size(); i++) cout<<wynik_2[i]<<" "; for(int i=0; i<wynik_3.size(); i++) cout<<wynik_3[i]<<" "; } else { cout<<"NIE"<<endl; } return 0; } bool zdrowieRosnaco(pair<int, pair<int,int> > i, pair<int, pair<int,int> > j) { return (i.second.second<j.second.second); } bool zdrowieMalejaco(pair<int, pair<int,int> > i, pair<int, pair<int,int> > j) { return (i.second.second>j.second.second); } bool atakRosnaco(pair<int, pair<int,int> > i, pair<int, pair<int,int> > j) { return (i.second.first<j.second.first); } bool atakMalejaco(pair<int, pair<int,int> > i, pair<int, pair<int,int> > j) { return (i.second.first>j.second.first); }
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 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 | #include <iostream> #include <utility> #include <vector> #include <algorithm> using namespace std; bool zdrowieRosnaco(pair<int, pair<int,int> > i, pair<int, pair<int,int> > j); bool zdrowieMalejaco(pair<int, pair<int,int> > i, pair<int, pair<int,int> > j); bool atakRosnaco(pair<int, pair<int,int> > i, pair<int, pair<int,int> > j); bool atakMalejaco(pair<int, pair<int,int> > i, pair<int, pair<int,int> > j); struct myclass { bool operator() (pair<int, pair<int,int> > i, pair<int, pair<int,int> > j) { return (i.second.second<j.second.second); } } myobject; int main() { ios_base::sync_with_stdio(0); int n, z; cin>>n>>z; vector<pair<int, pair<int,int> > >dDodatnia; vector<pair<int, pair<int,int> > >dZerowa; vector<pair<int, pair<int,int> > >dUjemna; for(int i=1; i<=n; i++) { int a, d; cin>>a>>d; pair<int, pair<int,int> > tmp; tmp.first=i; tmp.second.first=a; tmp.second.second=d; if(a<d) { dDodatnia.push_back(tmp); //cout<<"DODAJE "<<tmp.second.first<<" "<<tmp.second.second<<endl; } else if(a>d) { dUjemna.push_back(tmp); } else { dZerowa.push_back(tmp); } } sort(dDodatnia.begin(), dDodatnia.end(),atakRosnaco); /*cout<<"#DODATNIE"<<endl; for(int i=0; i<dDodatnia.size(); i++) { cout<<dDodatnia[i].first<<": "<<dDodatnia[i].second.first<<" "<<dDodatnia[i].second.second<<endl; }*/ sort(dUjemna.begin(), dUjemna.end(), atakMalejaco); /*cout<<"#UJEMNE"<<endl; for(int i=0; i<dUjemna.size(); i++) { cout<<dUjemna[i].first<<": "<<dUjemna[i].second.first<<" "<<dUjemna[i].second.second<<endl; } cout<<"#ZEROWE"<<endl;*/ /*for(int i=0; i<dZerowa.size(); i++) { cout<<dZerowa[i].first<<": "<<dZerowa[i].second.first<<" "<<dZerowa[i].second.second<<endl; }*/ bool f_1=1; bool f_2=1; bool f_3=1; vector<int> wynik_1; vector<int> wynik_2; vector<int> wynik_3; for(int i=0; i<dDodatnia.size(); i++) { if(dDodatnia[i].second.first<z) { z-=dDodatnia[i].second.first; z+=dDodatnia[i].second.second; wynik_1.push_back(dDodatnia[i].first); } else { f_1=0; break; } } for(int i=0; i<dZerowa.size() && f_1; i++) { if(dZerowa[i].second.first<z) { z-=dZerowa[i].second.first; z+=dZerowa[i].second.second; wynik_2.push_back(dZerowa[i].first); } else { f_2=0; break; } } int z_bc=z; for(int i=0; i<dUjemna.size() && f_2; i++) { if(dUjemna[i].second.first<z) { z-=dUjemna[i].second.first; z+=dUjemna[i].second.second; wynik_3.push_back(dUjemna[i].first); } else { f_3=0; break; } } if(f_3==0) { z=z_bc; f_3=1; wynik_3.clear(); sort(dUjemna.begin(), dUjemna.end(), zdrowieMalejaco); for(int i=0; i<dUjemna.size() && f_2; i++) { if(dUjemna[i].second.first<z) { z-=dUjemna[i].second.first; z+=dUjemna[i].second.second; wynik_3.push_back(dUjemna[i].first); }//POPRAWIC NA WIECEJ WARIANTOW else { f_3=0; break; } } } if(f_1 && f_2 && f_3) { cout<<"TAK"<<endl; for(int i=0; i<wynik_1.size(); i++) cout<<wynik_1[i]<<" "; for(int i=0; i<wynik_2.size(); i++) cout<<wynik_2[i]<<" "; for(int i=0; i<wynik_3.size(); i++) cout<<wynik_3[i]<<" "; } else { cout<<"NIE"<<endl; } return 0; } bool zdrowieRosnaco(pair<int, pair<int,int> > i, pair<int, pair<int,int> > j) { return (i.second.second<j.second.second); } bool zdrowieMalejaco(pair<int, pair<int,int> > i, pair<int, pair<int,int> > j) { return (i.second.second>j.second.second); } bool atakRosnaco(pair<int, pair<int,int> > i, pair<int, pair<int,int> > j) { return (i.second.first<j.second.first); } bool atakMalejaco(pair<int, pair<int,int> > i, pair<int, pair<int,int> > j) { return (i.second.first>j.second.first); } |