#include <iostream> #include <set> #include <map> #include <vector> using namespace std; typedef int Priority; typedef int Subs; typedef long long Ilosc; struct Pair { Pair() : a(0), b(0) {} Pair(int _a, int _b) : a(_a), b(_b) {} bool operator<(const Pair& other) const { if (a != other.a) return a < other.a; else return b < other.b; } int a, b; }; struct Reakcja { Reakcja(int a, int b, Priority pr) { subs.a = min(a, b); subs.b = max(a, b); this->pr = pr; } bool operator<(const Reakcja& other) const { return pr < other.pr; } Pair subs; Priority pr; }; map<Subs, map<Subs, Priority> > priorities; struct Fiolka { Fiolka () : osad(0) {} Fiolka(Subs s, Ilosc i) { subs[s] = i; osad = 0; } void merge(Fiolka& f) { for (map<Subs, Ilosc>::iterator it = f.subs.begin(); it != f.subs.end(); ++it) subs[it->first] += it->second; f.subs.clear(); } void react() { set<Reakcja> reakcje; utworzReakcje(reakcje); wytracOsad(reakcje); posprzataj(); } void utworzReakcje (set<Reakcja>& reakcje) { for (map<Subs, Ilosc>::iterator it = subs.begin(); it != subs.end(); ++it) { int s1 = it->first; const map<Subs, Priority>& zkim = priorities[s1]; for (map<Subs, Priority>::const_iterator it2 = zkim.begin(); it2 != zkim.end(); ++it2) { int s2 = it2->first; Priority pr = it2->second; if (subs.find(s2) != subs.end()) reakcje.insert(Reakcja(s1, s2, pr)); } } } void wytracOsad (set<Reakcja>& reakcje) { for (set<Reakcja>::iterator it = reakcje.begin(); it != reakcje.end(); ++it) { Pair p = it->subs; Ilosc il = min(subs[p.a], subs[p.b]); osad += 2*il; subs[p.a] -= il; subs[p.b] -= il; } } void posprzataj() { map<Subs, Ilosc>::iterator it = subs.begin(); while (it != subs.end()) { if (it->second == 0) { map<Subs, Ilosc>::iterator usun = it; it++; subs.erase(usun); } else it++; } } map<Subs, Ilosc> subs; Ilosc osad; }; // Nie bedziemy sie pierdolic, trzymamy dane globalnie. int n, // liczba fiolek m, // liczba operacji k; // liczba mozliwych reakcji vector<Fiolka> fiolki; vector<Pair> operacje; void wczytajFiolki() { fiolki.push_back(Fiolka()); // zeby wypelnila indeks 0 for (int i = 1; i <= n; ++i) { Ilosc il; cin >> il; fiolki.push_back(Fiolka(i, il)); } } void wczytajOperacje() { for (int i = 0; i < m; ++i) { int a, b; cin >> a >> b; Pair p(a, b); operacje.push_back(p); } } void wczytajReakcje() { for (int i = 0; i < k; ++i) { Subs c, d; cin >> c >> d; int mn = min(c,d); int wi = max(c,d); priorities[mn][wi] = i; } } // ---------------- Do debugowania: ----------------------------- void wypiszFiolki() { for (int i = 1; i <= n; ++i) { cerr << "Fiolka " << i << ": " << endl << " Zawartosc: "; for (map<Subs, Ilosc>::iterator it = fiolki[i].subs.begin(); it != fiolki[i].subs.end(); ++it) cerr << it->first << "(" << it->second << "), "; cerr << endl << " Osad: " << fiolki[i].osad << endl; } } void wypiszPriorities() { for (map<Subs, map<Subs, Priority> >::iterator it = priorities.begin(); it != priorities.end(); ++it) { map<Subs, Priority>& zkim = it->second; for (map<Subs, Priority>::iterator it2 = zkim.begin(); it2 != zkim.end(); ++it2) cerr << it2->second << " -> " << '(' << it->first << ", " << it2->first << ')' << endl; } } void eksperymentuj() { for (int i = 0; i < m; ++i) { int a = operacje[i].a; int b = operacje[i].b; fiolki[b].merge(fiolki[a]); fiolki[b].react(); } } void wypiszWynik() { Ilosc suma = 0; for (int i = 1; i <= n; ++i) suma += fiolki[i].osad; cout << suma << endl; } int main() { ios_base::sync_with_stdio(0); cin >> n >> m >> k; wczytajFiolki(); //cerr << "Fiolki poczatkowo: " << endl; wypiszFiolki(); wczytajOperacje(); wczytajReakcje(); //cerr << "Wczyane reakcje: " << endl; wypiszPriorities(); eksperymentuj(); //cerr << "Fiolki koncowo: " << endl; wypiszFiolki(); 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 | #include <iostream> #include <set> #include <map> #include <vector> using namespace std; typedef int Priority; typedef int Subs; typedef long long Ilosc; struct Pair { Pair() : a(0), b(0) {} Pair(int _a, int _b) : a(_a), b(_b) {} bool operator<(const Pair& other) const { if (a != other.a) return a < other.a; else return b < other.b; } int a, b; }; struct Reakcja { Reakcja(int a, int b, Priority pr) { subs.a = min(a, b); subs.b = max(a, b); this->pr = pr; } bool operator<(const Reakcja& other) const { return pr < other.pr; } Pair subs; Priority pr; }; map<Subs, map<Subs, Priority> > priorities; struct Fiolka { Fiolka () : osad(0) {} Fiolka(Subs s, Ilosc i) { subs[s] = i; osad = 0; } void merge(Fiolka& f) { for (map<Subs, Ilosc>::iterator it = f.subs.begin(); it != f.subs.end(); ++it) subs[it->first] += it->second; f.subs.clear(); } void react() { set<Reakcja> reakcje; utworzReakcje(reakcje); wytracOsad(reakcje); posprzataj(); } void utworzReakcje (set<Reakcja>& reakcje) { for (map<Subs, Ilosc>::iterator it = subs.begin(); it != subs.end(); ++it) { int s1 = it->first; const map<Subs, Priority>& zkim = priorities[s1]; for (map<Subs, Priority>::const_iterator it2 = zkim.begin(); it2 != zkim.end(); ++it2) { int s2 = it2->first; Priority pr = it2->second; if (subs.find(s2) != subs.end()) reakcje.insert(Reakcja(s1, s2, pr)); } } } void wytracOsad (set<Reakcja>& reakcje) { for (set<Reakcja>::iterator it = reakcje.begin(); it != reakcje.end(); ++it) { Pair p = it->subs; Ilosc il = min(subs[p.a], subs[p.b]); osad += 2*il; subs[p.a] -= il; subs[p.b] -= il; } } void posprzataj() { map<Subs, Ilosc>::iterator it = subs.begin(); while (it != subs.end()) { if (it->second == 0) { map<Subs, Ilosc>::iterator usun = it; it++; subs.erase(usun); } else it++; } } map<Subs, Ilosc> subs; Ilosc osad; }; // Nie bedziemy sie pierdolic, trzymamy dane globalnie. int n, // liczba fiolek m, // liczba operacji k; // liczba mozliwych reakcji vector<Fiolka> fiolki; vector<Pair> operacje; void wczytajFiolki() { fiolki.push_back(Fiolka()); // zeby wypelnila indeks 0 for (int i = 1; i <= n; ++i) { Ilosc il; cin >> il; fiolki.push_back(Fiolka(i, il)); } } void wczytajOperacje() { for (int i = 0; i < m; ++i) { int a, b; cin >> a >> b; Pair p(a, b); operacje.push_back(p); } } void wczytajReakcje() { for (int i = 0; i < k; ++i) { Subs c, d; cin >> c >> d; int mn = min(c,d); int wi = max(c,d); priorities[mn][wi] = i; } } // ---------------- Do debugowania: ----------------------------- void wypiszFiolki() { for (int i = 1; i <= n; ++i) { cerr << "Fiolka " << i << ": " << endl << " Zawartosc: "; for (map<Subs, Ilosc>::iterator it = fiolki[i].subs.begin(); it != fiolki[i].subs.end(); ++it) cerr << it->first << "(" << it->second << "), "; cerr << endl << " Osad: " << fiolki[i].osad << endl; } } void wypiszPriorities() { for (map<Subs, map<Subs, Priority> >::iterator it = priorities.begin(); it != priorities.end(); ++it) { map<Subs, Priority>& zkim = it->second; for (map<Subs, Priority>::iterator it2 = zkim.begin(); it2 != zkim.end(); ++it2) cerr << it2->second << " -> " << '(' << it->first << ", " << it2->first << ')' << endl; } } void eksperymentuj() { for (int i = 0; i < m; ++i) { int a = operacje[i].a; int b = operacje[i].b; fiolki[b].merge(fiolki[a]); fiolki[b].react(); } } void wypiszWynik() { Ilosc suma = 0; for (int i = 1; i <= n; ++i) suma += fiolki[i].osad; cout << suma << endl; } int main() { ios_base::sync_with_stdio(0); cin >> n >> m >> k; wczytajFiolki(); //cerr << "Fiolki poczatkowo: " << endl; wypiszFiolki(); wczytajOperacje(); wczytajReakcje(); //cerr << "Wczyane reakcje: " << endl; wypiszPriorities(); eksperymentuj(); //cerr << "Fiolki koncowo: " << endl; wypiszFiolki(); wypiszWynik(); return 0; } |