#include <cstdio> #include <algorithm> #include <list> #include <stack> using namespace std; #define MIN(a, b) a < b ? a : b #define MAX(a, b) a > b ? a : b #define MAXN 200010 #define MAXM 200010 #define MAXK 500010 typedef struct _Reakcja { public: int fiolkaA; int fiolkaB; } Reakcja; typedef struct _Wezel { public: int nr; int drzewo; int glebokosc; _Wezel *root; list<_Wezel *> potomki; list<Reakcja *> reakcje; _Wezel() { this->nr = 0; this->drzewo = -1; this->glebokosc = -1; this->root = NULL; this->potomki = list<_Wezel *>(); this->reakcje = list<Reakcja *>(); } } Wezel; long long int fiolki[MAXN]; long long int puste[MAXN]; Reakcja reakcje[MAXK]; Wezel wezly[MAXM]; bool roots[MAXN]; long long int wynik = 0; void DFS(Wezel *v) { puste[v->nr] = fiolki[v->nr]; for (list<Wezel *>::iterator it=v->potomki.begin(); it != v->potomki.end(); ++it) { DFS(*it); for (list<Reakcja *>::iterator it=v->reakcje.begin(); it != v->reakcje.end(); ++it) { long long int min = MIN(puste[(*it)->fiolkaA], puste[(*it)->fiolkaB]); wynik += 2 * min; puste[(*it)->fiolkaA] -= min; puste[(*it)->fiolkaB] -= min; if (min > 0) { it = v->reakcje.erase(it); it--; } } } } int main() { int m, n, k; scanf("%d %d %d", &n, &m, &k); for (int i = 1; i <= n; i++) { scanf("%lld", &fiolki[i]); puste[i] = 0; roots[i] = true; wezly[i].nr = i; } for (int i = 0; i < m; i++) { int a, b; scanf("%d %d", &a, &b); wezly[a].root = &wezly[b]; wezly[b].potomki.push_back(&wezly[a]); wezly[a].glebokosc = -1; roots[a] = false; } for (int i = 0; i < k; i++) { scanf("%d %d", &reakcje[i].fiolkaA, &reakcje[i].fiolkaB); } int drzewa = 0; for (int i = 1; i <= n; i++) { if (roots[i]) { stack<Wezel *> S; S.push(&wezly[i]); while(!S.empty()) { Wezel *v = S.top(); S.pop(); if ((v->root == NULL) || v->glebokosc == -1) { if (v->root != NULL) { v->drzewo = drzewa; v->glebokosc = v->root->glebokosc + 1; } else { wezly[i].drzewo = drzewa; wezly[i].glebokosc = 0; } for (list<Wezel *>::iterator it=v->potomki.begin(); it != v->potomki.end(); ++it) { S.push(*it); } } } drzewa++; } } for (int i = 0; i < k; i++) { if (wezly[reakcje[i].fiolkaA].drzewo != wezly[reakcje[i].fiolkaB].drzewo) { continue; } else { Wezel *w1 = &wezly[reakcje[i].fiolkaA]; Wezel *w2 = &wezly[reakcje[i].fiolkaB]; if (w1->glebokosc != w2->glebokosc) { int r = w1->glebokosc - w2->glebokosc; if (r > 0) { for (int j = 0; j < r; j++) { w1 = w1->root; } } else { r = -r; for (int j = 0; j < r; j++) { w2 = w2->root; } } } while (w1 != w2) { w1 = w1->root; w2 = w2->root; } w1->reakcje.push_back(&reakcje[i]); } } for (int i = 1; i <= n; i++) { if (roots[i]) { DFS(&wezly[i]); } } printf("%lld\n", wynik); 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 | #include <cstdio> #include <algorithm> #include <list> #include <stack> using namespace std; #define MIN(a, b) a < b ? a : b #define MAX(a, b) a > b ? a : b #define MAXN 200010 #define MAXM 200010 #define MAXK 500010 typedef struct _Reakcja { public: int fiolkaA; int fiolkaB; } Reakcja; typedef struct _Wezel { public: int nr; int drzewo; int glebokosc; _Wezel *root; list<_Wezel *> potomki; list<Reakcja *> reakcje; _Wezel() { this->nr = 0; this->drzewo = -1; this->glebokosc = -1; this->root = NULL; this->potomki = list<_Wezel *>(); this->reakcje = list<Reakcja *>(); } } Wezel; long long int fiolki[MAXN]; long long int puste[MAXN]; Reakcja reakcje[MAXK]; Wezel wezly[MAXM]; bool roots[MAXN]; long long int wynik = 0; void DFS(Wezel *v) { puste[v->nr] = fiolki[v->nr]; for (list<Wezel *>::iterator it=v->potomki.begin(); it != v->potomki.end(); ++it) { DFS(*it); for (list<Reakcja *>::iterator it=v->reakcje.begin(); it != v->reakcje.end(); ++it) { long long int min = MIN(puste[(*it)->fiolkaA], puste[(*it)->fiolkaB]); wynik += 2 * min; puste[(*it)->fiolkaA] -= min; puste[(*it)->fiolkaB] -= min; if (min > 0) { it = v->reakcje.erase(it); it--; } } } } int main() { int m, n, k; scanf("%d %d %d", &n, &m, &k); for (int i = 1; i <= n; i++) { scanf("%lld", &fiolki[i]); puste[i] = 0; roots[i] = true; wezly[i].nr = i; } for (int i = 0; i < m; i++) { int a, b; scanf("%d %d", &a, &b); wezly[a].root = &wezly[b]; wezly[b].potomki.push_back(&wezly[a]); wezly[a].glebokosc = -1; roots[a] = false; } for (int i = 0; i < k; i++) { scanf("%d %d", &reakcje[i].fiolkaA, &reakcje[i].fiolkaB); } int drzewa = 0; for (int i = 1; i <= n; i++) { if (roots[i]) { stack<Wezel *> S; S.push(&wezly[i]); while(!S.empty()) { Wezel *v = S.top(); S.pop(); if ((v->root == NULL) || v->glebokosc == -1) { if (v->root != NULL) { v->drzewo = drzewa; v->glebokosc = v->root->glebokosc + 1; } else { wezly[i].drzewo = drzewa; wezly[i].glebokosc = 0; } for (list<Wezel *>::iterator it=v->potomki.begin(); it != v->potomki.end(); ++it) { S.push(*it); } } } drzewa++; } } for (int i = 0; i < k; i++) { if (wezly[reakcje[i].fiolkaA].drzewo != wezly[reakcje[i].fiolkaB].drzewo) { continue; } else { Wezel *w1 = &wezly[reakcje[i].fiolkaA]; Wezel *w2 = &wezly[reakcje[i].fiolkaB]; if (w1->glebokosc != w2->glebokosc) { int r = w1->glebokosc - w2->glebokosc; if (r > 0) { for (int j = 0; j < r; j++) { w1 = w1->root; } } else { r = -r; for (int j = 0; j < r; j++) { w2 = w2->root; } } } while (w1 != w2) { w1 = w1->root; w2 = w2->root; } w1->reakcje.push_back(&reakcje[i]); } } for (int i = 1; i <= n; i++) { if (roots[i]) { DFS(&wezly[i]); } } printf("%lld\n", wynik); return 0; } |