#include <algorithm> #include <iostream> #include<vector> #include<cstring> #include<string> #include<map> #include<set> #include<algorithm> #include<stdlib.h> #include<stdio.h> #include <queue> using namespace std; struct zad{ public: int p; int k; int c; int v; }; bool s1(zad z1, zad z2) { if(z1.p != z2.p) return z1.p < z2.p; // if(z1.k != z2.k) return z1.k < z2.k; // return z1.c < z2.c; } zad tab[100]; bool s2(zad z1, zad z2) { if(z1.k-tab[z1.v].c != z2.k-tab[z2.v].c) return z1.k-tab[z1.v].c < z2.k-tab[z2.v].c; // if(z1.p != z2.p) return z1.p < z2.p; // return z1.c < z2.c; } struct B { bool operator()(const zad& z1, const zad& z2) const { if(z1.k != z2.k) return z1.k < z2.k; if(z1.c != z2.c) return z1.c < z2.c; return z1.p < z2.p; } }; int main(){ int n; int m; int p; int k; int c; cin>>n>>m; for(int i=0;i<n;i++) cin>>tab[i].p>>tab[i].k>>tab[i].c; if(n<=m){ cout<<"TAK\n"; return 0; } int suma_c =0 ; int max_k = -1; int min_p = 1000001; for(int i =0;i<n;i++){ suma_c+=tab[i].c; if(min_p>tab[i].p)min_p = tab[i].p; if(max_k<tab[i].k)max_k = tab[i].k; } if(suma_c>m*(max_k-min_p)){ cout<<"NIE\n"; return 0; } // for(int i =0;i<n;i++) // cout<<tab[i].p<<" "<<tab[i].k<<" "<<tab[i].c<<"\n"; // cout<<"min_p: "<<min_p<<"\n"; // cout<<"max_k: "<<max_k<<"\n"; sort(tab,tab+n,s1); for(int i =0;i<n;i++) tab[i].v=i; int przetworzono = 0; //priority_queue<Time, vector<Time>, CompareTime> //multiset<zad, B> miotla; vector<zad> miotla; miotla.clear(); for(int czas = 0;czas<max_k;czas++){ while(przetworzono < n){ if(tab[przetworzono].p == czas){ miotla.push_back(tab[przetworzono]); przetworzono++; // for (multiset<zad>::iterator it=miotla.begin(); it!=miotla.end(); ++it) // cout<<it->k<<" "; // cout<<"\n\n\n"; }else{ break; } } sort(miotla.begin(),miotla.end(),s2); //waliduj miotle int kom = m; for (auto it=miotla.begin(); it!=miotla.end(); it++) if(kom>0 && tab[it->v].c>0 && it->k > czas){ --tab[it->v].c; kom--; } } bool ok = true; for (auto it=miotla.begin(); it!=miotla.end(); it++){ // cout<<tab[it->v].c<<" "; if(tab[it->v].c>0){ ok = false; // break; } } // cout<<przetworzono<<" "<<n<<"\n"; if( ok){ cout<<"TAK\n"; }else{ cout<<"NIE\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 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 <algorithm> #include <iostream> #include<vector> #include<cstring> #include<string> #include<map> #include<set> #include<algorithm> #include<stdlib.h> #include<stdio.h> #include <queue> using namespace std; struct zad{ public: int p; int k; int c; int v; }; bool s1(zad z1, zad z2) { if(z1.p != z2.p) return z1.p < z2.p; // if(z1.k != z2.k) return z1.k < z2.k; // return z1.c < z2.c; } zad tab[100]; bool s2(zad z1, zad z2) { if(z1.k-tab[z1.v].c != z2.k-tab[z2.v].c) return z1.k-tab[z1.v].c < z2.k-tab[z2.v].c; // if(z1.p != z2.p) return z1.p < z2.p; // return z1.c < z2.c; } struct B { bool operator()(const zad& z1, const zad& z2) const { if(z1.k != z2.k) return z1.k < z2.k; if(z1.c != z2.c) return z1.c < z2.c; return z1.p < z2.p; } }; int main(){ int n; int m; int p; int k; int c; cin>>n>>m; for(int i=0;i<n;i++) cin>>tab[i].p>>tab[i].k>>tab[i].c; if(n<=m){ cout<<"TAK\n"; return 0; } int suma_c =0 ; int max_k = -1; int min_p = 1000001; for(int i =0;i<n;i++){ suma_c+=tab[i].c; if(min_p>tab[i].p)min_p = tab[i].p; if(max_k<tab[i].k)max_k = tab[i].k; } if(suma_c>m*(max_k-min_p)){ cout<<"NIE\n"; return 0; } // for(int i =0;i<n;i++) // cout<<tab[i].p<<" "<<tab[i].k<<" "<<tab[i].c<<"\n"; // cout<<"min_p: "<<min_p<<"\n"; // cout<<"max_k: "<<max_k<<"\n"; sort(tab,tab+n,s1); for(int i =0;i<n;i++) tab[i].v=i; int przetworzono = 0; //priority_queue<Time, vector<Time>, CompareTime> //multiset<zad, B> miotla; vector<zad> miotla; miotla.clear(); for(int czas = 0;czas<max_k;czas++){ while(przetworzono < n){ if(tab[przetworzono].p == czas){ miotla.push_back(tab[przetworzono]); przetworzono++; // for (multiset<zad>::iterator it=miotla.begin(); it!=miotla.end(); ++it) // cout<<it->k<<" "; // cout<<"\n\n\n"; }else{ break; } } sort(miotla.begin(),miotla.end(),s2); //waliduj miotle int kom = m; for (auto it=miotla.begin(); it!=miotla.end(); it++) if(kom>0 && tab[it->v].c>0 && it->k > czas){ --tab[it->v].c; kom--; } } bool ok = true; for (auto it=miotla.begin(); it!=miotla.end(); it++){ // cout<<tab[it->v].c<<" "; if(tab[it->v].c>0){ ok = false; // break; } } // cout<<przetworzono<<" "<<n<<"\n"; if( ok){ cout<<"TAK\n"; }else{ cout<<"NIE\n"; } return 0; } |