#include <iostream> #include <map> #include <vector> #include <set> #include <algorithm> using namespace std; map< pair<int, int>, int> pr; bool priorytet(pair<int, int> r1, pair<int, int> r2) { return pr[r1] > pr[r2]; } class Fiolka { public: void ustaw(int nr, int ilosc) { sklad[nr] = ilosc; } static long long osad; map<int,int> sklad; map<int, set<int> > reakcje; void dolej(Fiolka &druga); }; long long Fiolka::osad = 0; void scal(set<int> &s1, set<int> &s2) { if(s1.size() < s2.size()) { for(set<int>::iterator it = s1.begin(); it != s1.end(); it++) s2.insert(*it); s1.swap(s2); } else { for(set<int>::iterator it = s2.begin(); it != s2.end(); it++) s1.insert(*it); } } void Fiolka::dolej(Fiolka &druga) { vector< pair<int,int> > aktywne; Fiolka *a = this, *b = &druga; if(druga.sklad.size() > sklad.size()) { b = this; a = &druga; } for(map<int,int>::iterator it = b->sklad.begin(); it != b->sklad.end(); it++) { map<int, set<int> >::iterator rit = a->reakcje.find(it->first); if(rit != a->reakcje.end()) { for(set<int>::iterator jit = rit->second.begin(); jit != rit->second.end(); jit++) aktywne.push_back(pair<int,int>(it->first,*jit)); } a->sklad[it->first] = it->second; } sort(aktywne.begin(), aktywne.end(), priorytet); for(int i = 0; i < aktywne.size(); i++) { a->reakcje[aktywne[i].first].erase(aktywne[i].second); if(a->reakcje[aktywne[i].first].empty()) a->reakcje.erase(aktywne[i].first); b->reakcje[aktywne[i].second].erase(aktywne[i].first); if(b->reakcje[aktywne[i].second].empty()) b->reakcje.erase(aktywne[i].second); int m = min(a->sklad[aktywne[i].first], a->sklad[aktywne[i].second]); a->sklad[aktywne[i].first] -= m; a->sklad[aktywne[i].second] -= m; osad += 2 * m; } if(a != this) sklad.swap(a->sklad); if(b->reakcje.size() > a->reakcje.size()) { Fiolka * tmp = a; a = b; b = tmp; } for(map<int, set<int> >::iterator it = b->reakcje.begin(); it != b->reakcje.end(); it++) scal(a->reakcje[it->first], it->second); if(a != this) reakcje.swap(a->reakcje); druga.sklad.clear(); druga.reakcje.clear(); } int main() { vector<Fiolka> f; vector<pair<int, int> > kroki; int n, m, k, tmp, tmp2; cin >> n >> m >> k; f.resize(n); kroki.resize(m); for(int i = 0; i < n; i++) { cin >> tmp; f[i].ustaw(i+1, tmp); } for(int i = 0; i < m; i++) { cin >> kroki[i].first >> kroki[i].second; } for(int i = 0; i < k; i++) { cin >> tmp >> tmp2; pr[pair<int,int>(tmp,tmp2)] = i; pr[pair<int,int>(tmp2,tmp)] = i; f[tmp-1].reakcje[tmp2].insert(tmp); f[tmp2-1].reakcje[tmp].insert(tmp2); } for(int i = 0; i < m; i++) f[kroki[i].second-1].dolej(f[kroki[i].first-1]); cout << Fiolka::osad << endl; 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 | #include <iostream> #include <map> #include <vector> #include <set> #include <algorithm> using namespace std; map< pair<int, int>, int> pr; bool priorytet(pair<int, int> r1, pair<int, int> r2) { return pr[r1] > pr[r2]; } class Fiolka { public: void ustaw(int nr, int ilosc) { sklad[nr] = ilosc; } static long long osad; map<int,int> sklad; map<int, set<int> > reakcje; void dolej(Fiolka &druga); }; long long Fiolka::osad = 0; void scal(set<int> &s1, set<int> &s2) { if(s1.size() < s2.size()) { for(set<int>::iterator it = s1.begin(); it != s1.end(); it++) s2.insert(*it); s1.swap(s2); } else { for(set<int>::iterator it = s2.begin(); it != s2.end(); it++) s1.insert(*it); } } void Fiolka::dolej(Fiolka &druga) { vector< pair<int,int> > aktywne; Fiolka *a = this, *b = &druga; if(druga.sklad.size() > sklad.size()) { b = this; a = &druga; } for(map<int,int>::iterator it = b->sklad.begin(); it != b->sklad.end(); it++) { map<int, set<int> >::iterator rit = a->reakcje.find(it->first); if(rit != a->reakcje.end()) { for(set<int>::iterator jit = rit->second.begin(); jit != rit->second.end(); jit++) aktywne.push_back(pair<int,int>(it->first,*jit)); } a->sklad[it->first] = it->second; } sort(aktywne.begin(), aktywne.end(), priorytet); for(int i = 0; i < aktywne.size(); i++) { a->reakcje[aktywne[i].first].erase(aktywne[i].second); if(a->reakcje[aktywne[i].first].empty()) a->reakcje.erase(aktywne[i].first); b->reakcje[aktywne[i].second].erase(aktywne[i].first); if(b->reakcje[aktywne[i].second].empty()) b->reakcje.erase(aktywne[i].second); int m = min(a->sklad[aktywne[i].first], a->sklad[aktywne[i].second]); a->sklad[aktywne[i].first] -= m; a->sklad[aktywne[i].second] -= m; osad += 2 * m; } if(a != this) sklad.swap(a->sklad); if(b->reakcje.size() > a->reakcje.size()) { Fiolka * tmp = a; a = b; b = tmp; } for(map<int, set<int> >::iterator it = b->reakcje.begin(); it != b->reakcje.end(); it++) scal(a->reakcje[it->first], it->second); if(a != this) reakcje.swap(a->reakcje); druga.sklad.clear(); druga.reakcje.clear(); } int main() { vector<Fiolka> f; vector<pair<int, int> > kroki; int n, m, k, tmp, tmp2; cin >> n >> m >> k; f.resize(n); kroki.resize(m); for(int i = 0; i < n; i++) { cin >> tmp; f[i].ustaw(i+1, tmp); } for(int i = 0; i < m; i++) { cin >> kroki[i].first >> kroki[i].second; } for(int i = 0; i < k; i++) { cin >> tmp >> tmp2; pr[pair<int,int>(tmp,tmp2)] = i; pr[pair<int,int>(tmp2,tmp)] = i; f[tmp-1].reakcje[tmp2].insert(tmp); f[tmp2-1].reakcje[tmp].insert(tmp2); } for(int i = 0; i < m; i++) f[kroki[i].second-1].dolej(f[kroki[i].first-1]); cout << Fiolka::osad << endl; return 0; } |