//Dominik Klemba //Wersja poprawiona o -stream_iteratory //I wlasna kolejke =) #include <algorithm> //#include <iostream> //#include <iterator> #include <vector> #include <array> #include <tuple> #include <queue> #include <set> //#include "my_queue.cpp" template <typename T> class my_queue { unsigned poz; std::vector<T> elements; public: bool empty(void); void push(T); void pop(void); size_t size(void); const T& front(void); template<typename T2> void emplace(T2 a, T2 b, T2 c) { elements.emplace_back(a,b,c); } my_queue() : poz(0) { } }; template <typename T> void my_queue<T>::push(T new_element) { elements.push_back(new_element); } template <typename T> void my_queue<T>::pop() { ++poz; /*if(poz == elements.size()) { elements.clear(); elements.shrink_to_fit(); poz = 0; }*/ } template <typename T> const T& my_queue<T>::front() { return elements[poz]; } template <typename T> bool my_queue<T>::empty() { return poz == elements.size(); } template <typename T> size_t my_queue<T>::size() { return elements.size() - poz; } using namespace std; typedef tuple<unsigned, unsigned, unsigned> reakcja; class cmp { public: template<typename T> bool operator()(T first, T second) { return get<0>(first->front()) > get<0>(second->front()); } }; vector<unsigned> gramy_substancji; typedef priority_queue<my_queue<reakcja>*, vector<my_queue<reakcja>*>, cmp> kopiec; class fiolka { //Dane: set<unsigned> elementy; kopiec reakcje; unsigned moc; public: fiolka(const unsigned, my_queue<reakcja>); static unsigned long long przelej(fiolka&, fiolka&); }; vector<fiolka> przygotuj(const vector<unsigned>, const unsigned); unsigned long long rozwiaz(const vector<unsigned>, vector<fiolka>); int main() { //ios_base::sync_with_stdio(false); unsigned n,m,k; //cin >> n >> m >> k; scanf("%u%u%u", &n, &m, &k); gramy_substancji.reserve(n); //copy_n(istream_iterator<unsigned>(cin), n, back_inserter(gramy_substancji)); for(unsigned i = 0; i < n; ++i) { unsigned temp; scanf("%u", &temp); gramy_substancji.push_back(temp); } vector<unsigned> sekwencja; sekwencja.reserve(2*m); //copy_n(istream_iterator<unsigned>(cin), 2*m, back_inserter(sekwencja)); for(unsigned i = 0; i < 2*m; ++i) { unsigned temp; scanf("%u", &temp); sekwencja.push_back(temp); } vector<unsigned> reakcje; reakcje.reserve(2*k); //copy_n(istream_iterator<unsigned>(cin), 2*k, back_inserter(reakcje)); for(unsigned i = 0; i < 2*k; ++i) { unsigned temp; scanf("%u", &temp); reakcje.push_back(temp); } const unsigned long long odpowiedz = rozwiaz(move(sekwencja), przygotuj(move(reakcje), n)); //cout << 2*odpowiedz << '\n'; printf("%llu\n", 2 * odpowiedz); } vector<fiolka> przygotuj(const vector<unsigned> reakcje, const unsigned n) { vector<my_queue<reakcja>> wynik(n); for(unsigned i = 0; i < reakcje.size()/2; ++i) { wynik[reakcje[2*i]-1].emplace(i, reakcje[2*i]-1, reakcje[2*i+1]-1); wynik[reakcje[2*i+1]-1].emplace(i, reakcje[2*i+1]-1, reakcje[2*i]-1); } vector<fiolka> ostateczny_wynik; for(unsigned i = 0; i < n; ++i) { ostateczny_wynik.emplace_back(i,move(wynik[i])); } return ostateczny_wynik; } unsigned long long rozwiaz(const vector<unsigned> sekwencja, vector<fiolka> substancje) { unsigned long long wynik = 0; for(unsigned i = 0; i < sekwencja.size() / 2; ++i) { /*cerr << "W fiolkach: "; for(auto x : gramy_substancji) cerr << x << ' '; cerr << '\n';*/ wynik += fiolka::przelej(substancje[sekwencja[2*i]-1], substancje[sekwencja[2*i+1]-1]); } /*cerr << "W fiolkach: "; for(auto x : gramy_substancji) cerr << x << ' '; cerr << '\n';*/ return wynik; } fiolka::fiolka(const unsigned n, my_queue<reakcja> kolejka) : moc(kolejka.size()) { elementy.insert(n); if(kolejka.empty() == false) reakcje.push(new my_queue<reakcja>(move(kolejka))); } template<typename T> inline T& mniejsza(T& a, T& b) { return (a < b) ? a : b; } template<typename T> inline T& wieksza(T& a, T& b) { return (a < b) ? b : a; } tuple<unsigned long long, my_queue<reakcja>*> rozlej(kopiec& reakcje, set<unsigned>& a, set<unsigned>& b) { my_queue<reakcja>* nowa = new my_queue<reakcja>; unsigned long long wytraconych = 0; while(reakcje.empty() == false) { auto ptr = reakcje.top(); reakcje.pop(); auto object = ptr->front(); ptr->pop(); if(ptr->empty() == false) { reakcje.push(ptr); } else { delete ptr; } if(a.count(get<1>(object)) && b.count(get<2>(object))) { auto& gramow_a = gramy_substancji[get<1>(object)]; auto& gramow_b = gramy_substancji[get<2>(object)]; auto temp = min(gramow_a, gramow_b); //cerr << "ge {" << gramow_a << ", " << gramow_b <<"}\n"; wytraconych += min(gramow_a, gramow_b); mniejsza(gramow_a, gramow_b) = 0; wieksza(gramow_a, gramow_b) -= temp; if(gramow_a == 0) a.erase(get<1>(object)); if(gramow_b == 0) b.erase(get<2>(object)); } else if(a.count(get<1>(object))) nowa->push(object); } return make_tuple(wytraconych, nowa); } unsigned long long fiolka::przelej(fiolka& substrat, fiolka& produkt) { my_queue<reakcja>* nowa; unsigned long long wytraconych; if(substrat.moc < produkt.moc) { tie(wytraconych, nowa) = rozlej(substrat.reakcje, substrat.elementy, produkt.elementy); } else { tie(wytraconych, nowa) = rozlej(produkt.reakcje, produkt.elementy, substrat. elementy); swap(substrat.reakcje, produkt.reakcje); } if(nowa->empty() == false) { produkt.moc += nowa->size(); produkt.reakcje.push(nowa); } if(substrat.elementy.size() > produkt.elementy.size()) swap(produkt.elementy, substrat.elementy); for(auto x : substrat.elementy) { produkt.elementy.insert(x); } substrat.elementy.clear(); return wytraconych; }
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 | //Dominik Klemba //Wersja poprawiona o -stream_iteratory //I wlasna kolejke =) #include <algorithm> //#include <iostream> //#include <iterator> #include <vector> #include <array> #include <tuple> #include <queue> #include <set> //#include "my_queue.cpp" template <typename T> class my_queue { unsigned poz; std::vector<T> elements; public: bool empty(void); void push(T); void pop(void); size_t size(void); const T& front(void); template<typename T2> void emplace(T2 a, T2 b, T2 c) { elements.emplace_back(a,b,c); } my_queue() : poz(0) { } }; template <typename T> void my_queue<T>::push(T new_element) { elements.push_back(new_element); } template <typename T> void my_queue<T>::pop() { ++poz; /*if(poz == elements.size()) { elements.clear(); elements.shrink_to_fit(); poz = 0; }*/ } template <typename T> const T& my_queue<T>::front() { return elements[poz]; } template <typename T> bool my_queue<T>::empty() { return poz == elements.size(); } template <typename T> size_t my_queue<T>::size() { return elements.size() - poz; } using namespace std; typedef tuple<unsigned, unsigned, unsigned> reakcja; class cmp { public: template<typename T> bool operator()(T first, T second) { return get<0>(first->front()) > get<0>(second->front()); } }; vector<unsigned> gramy_substancji; typedef priority_queue<my_queue<reakcja>*, vector<my_queue<reakcja>*>, cmp> kopiec; class fiolka { //Dane: set<unsigned> elementy; kopiec reakcje; unsigned moc; public: fiolka(const unsigned, my_queue<reakcja>); static unsigned long long przelej(fiolka&, fiolka&); }; vector<fiolka> przygotuj(const vector<unsigned>, const unsigned); unsigned long long rozwiaz(const vector<unsigned>, vector<fiolka>); int main() { //ios_base::sync_with_stdio(false); unsigned n,m,k; //cin >> n >> m >> k; scanf("%u%u%u", &n, &m, &k); gramy_substancji.reserve(n); //copy_n(istream_iterator<unsigned>(cin), n, back_inserter(gramy_substancji)); for(unsigned i = 0; i < n; ++i) { unsigned temp; scanf("%u", &temp); gramy_substancji.push_back(temp); } vector<unsigned> sekwencja; sekwencja.reserve(2*m); //copy_n(istream_iterator<unsigned>(cin), 2*m, back_inserter(sekwencja)); for(unsigned i = 0; i < 2*m; ++i) { unsigned temp; scanf("%u", &temp); sekwencja.push_back(temp); } vector<unsigned> reakcje; reakcje.reserve(2*k); //copy_n(istream_iterator<unsigned>(cin), 2*k, back_inserter(reakcje)); for(unsigned i = 0; i < 2*k; ++i) { unsigned temp; scanf("%u", &temp); reakcje.push_back(temp); } const unsigned long long odpowiedz = rozwiaz(move(sekwencja), przygotuj(move(reakcje), n)); //cout << 2*odpowiedz << '\n'; printf("%llu\n", 2 * odpowiedz); } vector<fiolka> przygotuj(const vector<unsigned> reakcje, const unsigned n) { vector<my_queue<reakcja>> wynik(n); for(unsigned i = 0; i < reakcje.size()/2; ++i) { wynik[reakcje[2*i]-1].emplace(i, reakcje[2*i]-1, reakcje[2*i+1]-1); wynik[reakcje[2*i+1]-1].emplace(i, reakcje[2*i+1]-1, reakcje[2*i]-1); } vector<fiolka> ostateczny_wynik; for(unsigned i = 0; i < n; ++i) { ostateczny_wynik.emplace_back(i,move(wynik[i])); } return ostateczny_wynik; } unsigned long long rozwiaz(const vector<unsigned> sekwencja, vector<fiolka> substancje) { unsigned long long wynik = 0; for(unsigned i = 0; i < sekwencja.size() / 2; ++i) { /*cerr << "W fiolkach: "; for(auto x : gramy_substancji) cerr << x << ' '; cerr << '\n';*/ wynik += fiolka::przelej(substancje[sekwencja[2*i]-1], substancje[sekwencja[2*i+1]-1]); } /*cerr << "W fiolkach: "; for(auto x : gramy_substancji) cerr << x << ' '; cerr << '\n';*/ return wynik; } fiolka::fiolka(const unsigned n, my_queue<reakcja> kolejka) : moc(kolejka.size()) { elementy.insert(n); if(kolejka.empty() == false) reakcje.push(new my_queue<reakcja>(move(kolejka))); } template<typename T> inline T& mniejsza(T& a, T& b) { return (a < b) ? a : b; } template<typename T> inline T& wieksza(T& a, T& b) { return (a < b) ? b : a; } tuple<unsigned long long, my_queue<reakcja>*> rozlej(kopiec& reakcje, set<unsigned>& a, set<unsigned>& b) { my_queue<reakcja>* nowa = new my_queue<reakcja>; unsigned long long wytraconych = 0; while(reakcje.empty() == false) { auto ptr = reakcje.top(); reakcje.pop(); auto object = ptr->front(); ptr->pop(); if(ptr->empty() == false) { reakcje.push(ptr); } else { delete ptr; } if(a.count(get<1>(object)) && b.count(get<2>(object))) { auto& gramow_a = gramy_substancji[get<1>(object)]; auto& gramow_b = gramy_substancji[get<2>(object)]; auto temp = min(gramow_a, gramow_b); //cerr << "ge {" << gramow_a << ", " << gramow_b <<"}\n"; wytraconych += min(gramow_a, gramow_b); mniejsza(gramow_a, gramow_b) = 0; wieksza(gramow_a, gramow_b) -= temp; if(gramow_a == 0) a.erase(get<1>(object)); if(gramow_b == 0) b.erase(get<2>(object)); } else if(a.count(get<1>(object))) nowa->push(object); } return make_tuple(wytraconych, nowa); } unsigned long long fiolka::przelej(fiolka& substrat, fiolka& produkt) { my_queue<reakcja>* nowa; unsigned long long wytraconych; if(substrat.moc < produkt.moc) { tie(wytraconych, nowa) = rozlej(substrat.reakcje, substrat.elementy, produkt.elementy); } else { tie(wytraconych, nowa) = rozlej(produkt.reakcje, produkt.elementy, substrat. elementy); swap(substrat.reakcje, produkt.reakcje); } if(nowa->empty() == false) { produkt.moc += nowa->size(); produkt.reakcje.push(nowa); } if(substrat.elementy.size() > produkt.elementy.size()) swap(produkt.elementy, substrat.elementy); for(auto x : substrat.elementy) { produkt.elementy.insert(x); } substrat.elementy.clear(); return wytraconych; } |