#define _CRT_SECURE_NO_WARNINGS #include <cstdio> #include <stdio.h> #include <iostream> #include <string.h> #include <math.h> #include <algorithm> #include <vector> #include <set> #include <list> typedef long long lLong; typedef unsigned long uLong; typedef unsigned long long ulLong; typedef unsigned int uInt; typedef unsigned char Byte; using namespace std; #define FOR(x, b, e) for(int x=b; x<=(e); ++x) #define ALL(i) (i).begin(), (i).end() #define CONTAINS(i,v) (find(ALL(i),v)!=(i).end()) typedef vector<bool> bit_vector; typedef vector<ulLong> VI; typedef vector<ulLong> VLL; typedef pair<int,int> IPair; typedef vector< IPair > VIPair; struct Substancja; // struktura reprezentuje substancje reagujace ze soba struct Reagent { Reagent():Wykonana(false),SubstId1(NULL),SubstId2(NULL){} int Priorytet; Substancja *SubstId1; Substancja *SubstId2; bool Wykonana; inline bool CzyMozeZajscReakcja(); bool operator <(Reagent &a) {return Priorytet<a.Priorytet;} }; static vector<Reagent> Reagenty; //baza danych reakcji struct Substancja { vector<Reagent*> ReagentyLocal; // substancje z ktorymi reaguje public: Substancja():Waga(0),IdAktualnejFiolki(0) {} int Id; int IdAktualnejFiolki; lLong Waga; void DodajReagenta(Reagent *reagent) { ReagentyLocal.push_back(reagent); } inline Reagent* PobierzReagentZSubstancja() { vector<Reagent*>::iterator it; for( it=ReagentyLocal.begin();it!=ReagentyLocal.end();++it) { if((*it)->CzyMozeZajscReakcja()) { return *it; } } return NULL; } // Funkcja zwraca ilosc osadu ktory powstala // Jesli funkcja zwroci 0 to znaczy ze reakcja nie zaszla lLong WykonajReakcje(Substancja& s) { lLong zwrot=0; zwrot=min(s.Waga,Waga)*2; // wyliczenie ilosci osadu if(s.Waga>Waga) { s.Waga=s.Waga-Waga; //wyliczenie nowej wagi substancji Waga=0; } else { Waga=Waga-s.Waga; //wyliczenie nowej wagi substancji s.Waga=0; } return zwrot; } inline void WczytajWage(FILE *input) { fscanf(input,"%llu",&Waga); } }; inline bool Reagent::CzyMozeZajscReakcja() { return(false==Wykonana && SubstId1->IdAktualnejFiolki==SubstId2->IdAktualnejFiolki && SubstId1->Waga>0 && SubstId2->Waga>0); } struct Fiolka { public: int Id; bool Zuzyta; lLong WagaOsadu; vector<Substancja*> Roztwor; Fiolka():Id(0),Zuzyta(false),WagaOsadu(0){} bool operator ==(Fiolka& a) {return a.Id==Id ;} inline void PobierzDaneDoReakcji(vector<Reagent*>& reagenty) { Substancja *s1; Reagent* tmp; for(uInt i=0;i<Roztwor.size();i++) { s1=Roztwor[i]; if(s1->Waga>0) { tmp=s1->PobierzReagentZSubstancja(); if(tmp) { reagenty.push_back(tmp); } } } } inline void DodajSubstraty(vector<Substancja*>& substraty) { for(uInt i=0;i<substraty.size();i++) { if(substraty[i]->Waga>0) { substraty[i]->IdAktualnejFiolki=Id; Roztwor.push_back(substraty[i]); } } substraty.clear(); } // wykonanie reakcji inline lLong WykonajReakcje(vector<Reagent*>& reagenty) { lLong zwrot=0; std::sort(ALL(reagenty)); //zaczynamy od najwczesniejszego Reagent * tmp; for(uInt i=0;i<reagenty.size();i++) { tmp=reagenty[i]; zwrot+=tmp->SubstId1->WykonajReakcje(*tmp->SubstId2); tmp->Wykonana=true; } return zwrot; } // powoduje wlanie zawartosci fiolki z parametru do tej fiolki inline void Wlej(Fiolka &fiolka) { DodajSubstraty(fiolka.Roztwor); vector<Reagent*> reagenty; PobierzDaneDoReakcji(reagenty); if(reagenty.size()>0) { WagaOsadu+=WykonajReakcje(reagenty); } // dopisanie substratow do roztworu //DodajSubstraty(fiolka.Roztwor); } }; class PrzypadekTestowy { private: int _liczbaFiolek; int _dlugoscSekwencji; int _liczbaReagentow; inline void Reset() { Fiolki.clear(); Sekwencja.clear(); } inline void WczytajReakcje(FILE *input) { int c,d; Reagenty.resize(_liczbaReagentow); Reagent *tmp; for(int i=0;i<_liczbaReagentow;i++) { tmp=&Reagenty[i]; tmp->Priorytet=i; fscanf(input,"%d %d",&c,&d); tmp->SubstId1=&Substancje[c-1]; tmp->SubstId2=&Substancje[d-1]; Substancje[c-1].DodajReagenta(tmp); Substancje[d-1].DodajReagenta(tmp); } } inline void WczytajSekwencje(FILE *input) { Fiolka *fiolka; Sekwencja.resize(_dlugoscSekwencji); for(int i=0;i<_dlugoscSekwencji;i++) { fiolka = &Fiolki[i]; fscanf(input,"%d %d",&Sekwencja[i].first,&Sekwencja[i].second); } } inline void WczytajWagi(FILE *input) { Substancja *tmp; for(int i=0;i<_liczbaFiolek;i++) { tmp=&Substancje[i]; Fiolki[i].Id=i+1; tmp->Id=i+1; tmp->IdAktualnejFiolki=i+1; tmp->WczytajWage(input); Fiolki[i].Roztwor.push_back(&Substancje[i]); } } public: vector<Fiolka> Fiolki; vector<Substancja> Substancje; VIPair Sekwencja; inline void WczytajPrzypadekTestowy() { WczytajPrzypadekTestowy(stdin); } inline void WczytajPrzypadekTestowy(FILE *input) { Reset(); if(NULL!=input) { fscanf(input,"%d %d %d",&_liczbaFiolek,&_dlugoscSekwencji,&_liczbaReagentow); Fiolki.resize(_liczbaFiolek); Substancje.resize(_liczbaFiolek); WczytajWagi(input); WczytajSekwencje(input); WczytajReakcje(input); } } inline void WykonajSekwencje() { IPair *tmp; for(uInt i=0;i<Sekwencja.size();i++) { tmp=&Sekwencja[i]; Fiolki[tmp->second-1].Wlej(Fiolki[tmp->first-1]); Fiolki[tmp->first-1].Zuzyta=true; } } inline ulLong ObliczWageOsadow() { ulLong zwrot=0; for(uInt i=0;i<Fiolki.size();i++) { zwrot+=Fiolki[i].WagaOsadu; } return zwrot; } void WypiszWynik() { ulLong wynik=0; for(uInt i=0;i<Fiolki.size();i++) { wynik+=Fiolki[i].WagaOsadu; } printf("%llu\n",wynik); } }; int main(int argc, char **argv) { // Do celow testowych FILE *in=stdin; if(argc>1) { in = fopen(argv[1],"rt"); if(NULL==in) { in=stdin; } } /////////////////////////////////////////// PrzypadekTestowy przypadek; przypadek.WczytajPrzypadekTestowy(in); przypadek.WykonajSekwencje(); przypadek.WypiszWynik(); 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 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 | #define _CRT_SECURE_NO_WARNINGS #include <cstdio> #include <stdio.h> #include <iostream> #include <string.h> #include <math.h> #include <algorithm> #include <vector> #include <set> #include <list> typedef long long lLong; typedef unsigned long uLong; typedef unsigned long long ulLong; typedef unsigned int uInt; typedef unsigned char Byte; using namespace std; #define FOR(x, b, e) for(int x=b; x<=(e); ++x) #define ALL(i) (i).begin(), (i).end() #define CONTAINS(i,v) (find(ALL(i),v)!=(i).end()) typedef vector<bool> bit_vector; typedef vector<ulLong> VI; typedef vector<ulLong> VLL; typedef pair<int,int> IPair; typedef vector< IPair > VIPair; struct Substancja; // struktura reprezentuje substancje reagujace ze soba struct Reagent { Reagent():Wykonana(false),SubstId1(NULL),SubstId2(NULL){} int Priorytet; Substancja *SubstId1; Substancja *SubstId2; bool Wykonana; inline bool CzyMozeZajscReakcja(); bool operator <(Reagent &a) {return Priorytet<a.Priorytet;} }; static vector<Reagent> Reagenty; //baza danych reakcji struct Substancja { vector<Reagent*> ReagentyLocal; // substancje z ktorymi reaguje public: Substancja():Waga(0),IdAktualnejFiolki(0) {} int Id; int IdAktualnejFiolki; lLong Waga; void DodajReagenta(Reagent *reagent) { ReagentyLocal.push_back(reagent); } inline Reagent* PobierzReagentZSubstancja() { vector<Reagent*>::iterator it; for( it=ReagentyLocal.begin();it!=ReagentyLocal.end();++it) { if((*it)->CzyMozeZajscReakcja()) { return *it; } } return NULL; } // Funkcja zwraca ilosc osadu ktory powstala // Jesli funkcja zwroci 0 to znaczy ze reakcja nie zaszla lLong WykonajReakcje(Substancja& s) { lLong zwrot=0; zwrot=min(s.Waga,Waga)*2; // wyliczenie ilosci osadu if(s.Waga>Waga) { s.Waga=s.Waga-Waga; //wyliczenie nowej wagi substancji Waga=0; } else { Waga=Waga-s.Waga; //wyliczenie nowej wagi substancji s.Waga=0; } return zwrot; } inline void WczytajWage(FILE *input) { fscanf(input,"%llu",&Waga); } }; inline bool Reagent::CzyMozeZajscReakcja() { return(false==Wykonana && SubstId1->IdAktualnejFiolki==SubstId2->IdAktualnejFiolki && SubstId1->Waga>0 && SubstId2->Waga>0); } struct Fiolka { public: int Id; bool Zuzyta; lLong WagaOsadu; vector<Substancja*> Roztwor; Fiolka():Id(0),Zuzyta(false),WagaOsadu(0){} bool operator ==(Fiolka& a) {return a.Id==Id ;} inline void PobierzDaneDoReakcji(vector<Reagent*>& reagenty) { Substancja *s1; Reagent* tmp; for(uInt i=0;i<Roztwor.size();i++) { s1=Roztwor[i]; if(s1->Waga>0) { tmp=s1->PobierzReagentZSubstancja(); if(tmp) { reagenty.push_back(tmp); } } } } inline void DodajSubstraty(vector<Substancja*>& substraty) { for(uInt i=0;i<substraty.size();i++) { if(substraty[i]->Waga>0) { substraty[i]->IdAktualnejFiolki=Id; Roztwor.push_back(substraty[i]); } } substraty.clear(); } // wykonanie reakcji inline lLong WykonajReakcje(vector<Reagent*>& reagenty) { lLong zwrot=0; std::sort(ALL(reagenty)); //zaczynamy od najwczesniejszego Reagent * tmp; for(uInt i=0;i<reagenty.size();i++) { tmp=reagenty[i]; zwrot+=tmp->SubstId1->WykonajReakcje(*tmp->SubstId2); tmp->Wykonana=true; } return zwrot; } // powoduje wlanie zawartosci fiolki z parametru do tej fiolki inline void Wlej(Fiolka &fiolka) { DodajSubstraty(fiolka.Roztwor); vector<Reagent*> reagenty; PobierzDaneDoReakcji(reagenty); if(reagenty.size()>0) { WagaOsadu+=WykonajReakcje(reagenty); } // dopisanie substratow do roztworu //DodajSubstraty(fiolka.Roztwor); } }; class PrzypadekTestowy { private: int _liczbaFiolek; int _dlugoscSekwencji; int _liczbaReagentow; inline void Reset() { Fiolki.clear(); Sekwencja.clear(); } inline void WczytajReakcje(FILE *input) { int c,d; Reagenty.resize(_liczbaReagentow); Reagent *tmp; for(int i=0;i<_liczbaReagentow;i++) { tmp=&Reagenty[i]; tmp->Priorytet=i; fscanf(input,"%d %d",&c,&d); tmp->SubstId1=&Substancje[c-1]; tmp->SubstId2=&Substancje[d-1]; Substancje[c-1].DodajReagenta(tmp); Substancje[d-1].DodajReagenta(tmp); } } inline void WczytajSekwencje(FILE *input) { Fiolka *fiolka; Sekwencja.resize(_dlugoscSekwencji); for(int i=0;i<_dlugoscSekwencji;i++) { fiolka = &Fiolki[i]; fscanf(input,"%d %d",&Sekwencja[i].first,&Sekwencja[i].second); } } inline void WczytajWagi(FILE *input) { Substancja *tmp; for(int i=0;i<_liczbaFiolek;i++) { tmp=&Substancje[i]; Fiolki[i].Id=i+1; tmp->Id=i+1; tmp->IdAktualnejFiolki=i+1; tmp->WczytajWage(input); Fiolki[i].Roztwor.push_back(&Substancje[i]); } } public: vector<Fiolka> Fiolki; vector<Substancja> Substancje; VIPair Sekwencja; inline void WczytajPrzypadekTestowy() { WczytajPrzypadekTestowy(stdin); } inline void WczytajPrzypadekTestowy(FILE *input) { Reset(); if(NULL!=input) { fscanf(input,"%d %d %d",&_liczbaFiolek,&_dlugoscSekwencji,&_liczbaReagentow); Fiolki.resize(_liczbaFiolek); Substancje.resize(_liczbaFiolek); WczytajWagi(input); WczytajSekwencje(input); WczytajReakcje(input); } } inline void WykonajSekwencje() { IPair *tmp; for(uInt i=0;i<Sekwencja.size();i++) { tmp=&Sekwencja[i]; Fiolki[tmp->second-1].Wlej(Fiolki[tmp->first-1]); Fiolki[tmp->first-1].Zuzyta=true; } } inline ulLong ObliczWageOsadow() { ulLong zwrot=0; for(uInt i=0;i<Fiolki.size();i++) { zwrot+=Fiolki[i].WagaOsadu; } return zwrot; } void WypiszWynik() { ulLong wynik=0; for(uInt i=0;i<Fiolki.size();i++) { wynik+=Fiolki[i].WagaOsadu; } printf("%llu\n",wynik); } }; int main(int argc, char **argv) { // Do celow testowych FILE *in=stdin; if(argc>1) { in = fopen(argv[1],"rt"); if(NULL==in) { in=stdin; } } /////////////////////////////////////////// PrzypadekTestowy przypadek; przypadek.WczytajPrzypadekTestowy(in); przypadek.WykonajSekwencje(); przypadek.WypiszWynik(); return 0; } |