#include <iostream> #include <map> #include <set> #include <vector> using namespace std; #define EnableLog 0 #define log if (EnableLog) cerr typedef long long ll; typedef unsigned long long ull; typedef pair<int, int> Krok; struct Fiolka { int numer; map<int, int> substancje; }; struct Substancja { int numer; set<int> reakcje; }; struct Reakcja { int numer; int first, second; Reakcja(): numer(-1), first(-1), second(-1) {} Reakcja(int _numer): numer(_numer), first(-1), second(-1) {} Reakcja(int _numer, int _first, int _second): numer(_numer), first(_first), second(_second) { } }; bool operator < (const Reakcja& r1, const Reakcja& r2) { return r1.numer < r2.numer; } int liczbaFiolek, liczbaKrokow, liczbaReakcji; map<int, Fiolka> fiolki; set<Reakcja> reakcjeGlobalne; vector<Krok> kroki; map<int, Substancja> substancje; void wypiszFiolki() { #if EnableLog log << "FIOLKI" << endl; for (auto itf : fiolki) { log << itf.second.numer << ": "; for (auto its : itf.second.substancje) { log << its.first << ":" << its.second << ", "; } log << endl; } #endif } void wczytajDane() { int i; cin >> liczbaFiolek >> liczbaKrokow >> liczbaReakcji; for (i=1; i<=liczbaFiolek; i++) { Fiolka fiolka; int gramy; cin >> gramy; fiolka.numer = i; fiolka.substancje[i] = gramy; substancje[i].numer = i; fiolki[fiolka.numer] = fiolka; } kroki.resize(liczbaKrokow); for (Krok& krok : kroki) { cin >> krok.first >> krok.second; } for (i=0; i<liczbaReakcji; i++) { Reakcja reakcja; cin >> reakcja.first >> reakcja.second; reakcja.numer = i; reakcjeGlobalne.insert(reakcja); substancje[reakcja.first].reakcje.insert(reakcja.numer); substancje[reakcja.second].reakcje.insert(reakcja.numer); } // usun niereagujace for (auto& subIt : substancje) { if (subIt.second.reakcje.size() == 0) { fiolki[subIt.second.numer].substancje.clear(); } } wypiszFiolki(); } ll przeprowadzReakcje(Fiolka& f1, Fiolka& f2, int subZF1, int subZF2, vector<Reakcja>& reakcjeDoUsuniecia) { ll osad; int s1 = f1.substancje[subZF1]; int s2 = f2.substancje[subZF2]; int min12 = min(s1, s2); osad = 2 * min12; f1.substancje[subZF1] -= min12; f2.substancje[subZF2] -= min12; if (f1.substancje[subZF1] == 0) { f1.substancje.erase(subZF1); reakcjeDoUsuniecia.insert(reakcjeDoUsuniecia.end(), substancje[subZF1].reakcje.begin(), substancje[subZF1].reakcje.end()); substancje[subZF1].reakcje.clear(); } if (f2.substancje[subZF2] == 0) { f2.substancje.erase(subZF2); reakcjeDoUsuniecia.insert(reakcjeDoUsuniecia.end(), substancje[subZF2].reakcje.begin(), substancje[subZF2].reakcje.end()); substancje[subZF2].reakcje.clear(); } return osad; } ll przeprowadzReakcje(Fiolka& f1, Fiolka& f2, set<Reakcja>& reakcje) { ll osad = 0; vector<Reakcja> reakcjeDoUsuniecia; for (Reakcja reakcja : reakcje) { if (f1.substancje.find(reakcja.first)!=f1.substancje.end() && f2.substancje.find(reakcja.second)!=f2.substancje.end()) { osad += przeprowadzReakcje(f1, f2, reakcja.first, reakcja.second, reakcjeDoUsuniecia); substancje[f2.numer].reakcje.erase(reakcja.numer); } else if (f1.substancje.find(reakcja.second)!=f1.substancje.end() && f2.substancje.find(reakcja.first)!=f2.substancje.end()) { osad += przeprowadzReakcje(f1, f2, reakcja.second, reakcja.first, reakcjeDoUsuniecia); substancje[f2.numer].reakcje.erase(reakcja.numer); } } f2.substancje.insert(f1.substancje.begin(), f1.substancje.end()); fiolki.erase(f1.numer); for (const Reakcja& reakcja : reakcjeDoUsuniecia) { reakcjeGlobalne.erase(reakcja); } return osad; } void obliczReakcje(Fiolka& f1, Fiolka& f2, set<Reakcja>& reakcje) { if (f1.substancje.size()==0 || f2.substancje.size()==0) { return; } for (auto& para : f1.substancje) { for (int nrReakcji : substancje[para.first].reakcje) { auto itr = reakcjeGlobalne.find(nrReakcji); if (itr == reakcjeGlobalne.end()) continue; auto itf2s = f2.substancje.find(itr->first); if (itf2s == f2.substancje.end()) { itf2s = f2.substancje.find(itr->second); } if (itf2s != f2.substancje.end()) { reakcje.insert(*itr); } } } } void rozwiaz() { ll osad = 0; for (Krok krok : kroki) { Fiolka& f1 = fiolki[krok.first]; Fiolka& f2 = fiolki[krok.second]; ll iloczyn = (ll)f1.substancje.size() * f2.substancje.size(); if (iloczyn < reakcjeGlobalne.size()) { set<Reakcja> reakcje; log << "oblicz reakcje" << endl; obliczReakcje(f1, f2, reakcje); osad += przeprowadzReakcje(f1, f2, reakcje); } else { osad += przeprowadzReakcje(f1, f2, reakcjeGlobalne); } wypiszFiolki(); } cout << osad; } int main() { ios_base::sync_with_stdio(false); wczytajDane(); rozwiaz(); 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 | #include <iostream> #include <map> #include <set> #include <vector> using namespace std; #define EnableLog 0 #define log if (EnableLog) cerr typedef long long ll; typedef unsigned long long ull; typedef pair<int, int> Krok; struct Fiolka { int numer; map<int, int> substancje; }; struct Substancja { int numer; set<int> reakcje; }; struct Reakcja { int numer; int first, second; Reakcja(): numer(-1), first(-1), second(-1) {} Reakcja(int _numer): numer(_numer), first(-1), second(-1) {} Reakcja(int _numer, int _first, int _second): numer(_numer), first(_first), second(_second) { } }; bool operator < (const Reakcja& r1, const Reakcja& r2) { return r1.numer < r2.numer; } int liczbaFiolek, liczbaKrokow, liczbaReakcji; map<int, Fiolka> fiolki; set<Reakcja> reakcjeGlobalne; vector<Krok> kroki; map<int, Substancja> substancje; void wypiszFiolki() { #if EnableLog log << "FIOLKI" << endl; for (auto itf : fiolki) { log << itf.second.numer << ": "; for (auto its : itf.second.substancje) { log << its.first << ":" << its.second << ", "; } log << endl; } #endif } void wczytajDane() { int i; cin >> liczbaFiolek >> liczbaKrokow >> liczbaReakcji; for (i=1; i<=liczbaFiolek; i++) { Fiolka fiolka; int gramy; cin >> gramy; fiolka.numer = i; fiolka.substancje[i] = gramy; substancje[i].numer = i; fiolki[fiolka.numer] = fiolka; } kroki.resize(liczbaKrokow); for (Krok& krok : kroki) { cin >> krok.first >> krok.second; } for (i=0; i<liczbaReakcji; i++) { Reakcja reakcja; cin >> reakcja.first >> reakcja.second; reakcja.numer = i; reakcjeGlobalne.insert(reakcja); substancje[reakcja.first].reakcje.insert(reakcja.numer); substancje[reakcja.second].reakcje.insert(reakcja.numer); } // usun niereagujace for (auto& subIt : substancje) { if (subIt.second.reakcje.size() == 0) { fiolki[subIt.second.numer].substancje.clear(); } } wypiszFiolki(); } ll przeprowadzReakcje(Fiolka& f1, Fiolka& f2, int subZF1, int subZF2, vector<Reakcja>& reakcjeDoUsuniecia) { ll osad; int s1 = f1.substancje[subZF1]; int s2 = f2.substancje[subZF2]; int min12 = min(s1, s2); osad = 2 * min12; f1.substancje[subZF1] -= min12; f2.substancje[subZF2] -= min12; if (f1.substancje[subZF1] == 0) { f1.substancje.erase(subZF1); reakcjeDoUsuniecia.insert(reakcjeDoUsuniecia.end(), substancje[subZF1].reakcje.begin(), substancje[subZF1].reakcje.end()); substancje[subZF1].reakcje.clear(); } if (f2.substancje[subZF2] == 0) { f2.substancje.erase(subZF2); reakcjeDoUsuniecia.insert(reakcjeDoUsuniecia.end(), substancje[subZF2].reakcje.begin(), substancje[subZF2].reakcje.end()); substancje[subZF2].reakcje.clear(); } return osad; } ll przeprowadzReakcje(Fiolka& f1, Fiolka& f2, set<Reakcja>& reakcje) { ll osad = 0; vector<Reakcja> reakcjeDoUsuniecia; for (Reakcja reakcja : reakcje) { if (f1.substancje.find(reakcja.first)!=f1.substancje.end() && f2.substancje.find(reakcja.second)!=f2.substancje.end()) { osad += przeprowadzReakcje(f1, f2, reakcja.first, reakcja.second, reakcjeDoUsuniecia); substancje[f2.numer].reakcje.erase(reakcja.numer); } else if (f1.substancje.find(reakcja.second)!=f1.substancje.end() && f2.substancje.find(reakcja.first)!=f2.substancje.end()) { osad += przeprowadzReakcje(f1, f2, reakcja.second, reakcja.first, reakcjeDoUsuniecia); substancje[f2.numer].reakcje.erase(reakcja.numer); } } f2.substancje.insert(f1.substancje.begin(), f1.substancje.end()); fiolki.erase(f1.numer); for (const Reakcja& reakcja : reakcjeDoUsuniecia) { reakcjeGlobalne.erase(reakcja); } return osad; } void obliczReakcje(Fiolka& f1, Fiolka& f2, set<Reakcja>& reakcje) { if (f1.substancje.size()==0 || f2.substancje.size()==0) { return; } for (auto& para : f1.substancje) { for (int nrReakcji : substancje[para.first].reakcje) { auto itr = reakcjeGlobalne.find(nrReakcji); if (itr == reakcjeGlobalne.end()) continue; auto itf2s = f2.substancje.find(itr->first); if (itf2s == f2.substancje.end()) { itf2s = f2.substancje.find(itr->second); } if (itf2s != f2.substancje.end()) { reakcje.insert(*itr); } } } } void rozwiaz() { ll osad = 0; for (Krok krok : kroki) { Fiolka& f1 = fiolki[krok.first]; Fiolka& f2 = fiolki[krok.second]; ll iloczyn = (ll)f1.substancje.size() * f2.substancje.size(); if (iloczyn < reakcjeGlobalne.size()) { set<Reakcja> reakcje; log << "oblicz reakcje" << endl; obliczReakcje(f1, f2, reakcje); osad += przeprowadzReakcje(f1, f2, reakcje); } else { osad += przeprowadzReakcje(f1, f2, reakcjeGlobalne); } wypiszFiolki(); } cout << osad; } int main() { ios_base::sync_with_stdio(false); wczytajDane(); rozwiaz(); return 0; } |