# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
57251 | 2018-07-14T11:06:40 Z | PeppaPig | Islands (IOI08_islands) | C++14 | 768 ms | 119168 KB |
#include <bits/stdc++.h> #define pll pair<long long, long long> #define x first #define y second using namespace std; const int N = 1e6 + 5; int n; pll par[N], dp[N]; long long dm[N], ans; int deg[N]; int main() { scanf("%d", &n); for(int i = 1; i <= n; i++) { long long v, w; scanf("%lld%lld", &v, &w); par[i] = pll(v, w); deg[v]++; } queue<int> Q; for(int i = 1; i <= n; i++) if(!deg[i]) Q.emplace(i); while(!Q.empty()) { int now = Q.front(); Q.pop(); dm[now] = max(dm[now], dp[now].x + dp[now].y); dm[par[now].x] = max(dm[par[now].x], dm[now]); long long dis = dp[now].x + par[now].y; if(dis > dp[par[now].x].x) swap(dis, dp[par[now].x].x); if(dis > dp[par[now].x].y) swap(dis, dp[par[now].x].y); if(!--deg[par[now].x]) Q.emplace(par[now].x); } for(int k = 1; k <= n; k++) if(deg[k]) { int p = k; vector<pll> cyc; deque<pll> Q; while(deg[p]) { deg[p]--; cyc.emplace_back(p, par[p].y); p = par[p].x; } long long ret = 0, dis = cyc[0].y, pdis = 0; for(pll v : cyc) ret = max(ret, max(dm[v.x], dp[v.x].x + dp[v.x].y)); for(int i = 1; i < cyc.size(); i++) { while(!Q.empty() && Q.back().x < dis + dp[cyc[i].x].x) Q.pop_back(); Q.emplace_back(dis + dp[cyc[i].x].x, i); dis += cyc[i].y; } ret = max(ret, dp[cyc[0].x].x + Q.front().x); for(int i = 0; i < cyc.size() - 1; i++) { if(Q.front().y == i + 1) Q.pop_front(); while(!Q.empty() && Q.back().x < dis + dp[cyc[i].x].x) Q.pop_back(); Q.emplace_back(dis + dp[cyc[i].x].x, i); dis += cyc[i].y; pdis += cyc[i].y; ret = max(ret, dp[cyc[i + 1].x].x + Q.front().x - pdis); } ans += ret; } printf("%lld", ans); return 0; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 3 ms | 376 KB | Output is correct |
2 | Correct | 2 ms | 488 KB | Output is correct |
3 | Correct | 3 ms | 564 KB | Output is correct |
4 | Correct | 3 ms | 564 KB | Output is correct |
5 | Correct | 3 ms | 564 KB | Output is correct |
6 | Correct | 3 ms | 572 KB | Output is correct |
7 | Correct | 3 ms | 572 KB | Output is correct |
8 | Correct | 2 ms | 656 KB | Output is correct |
9 | Correct | 2 ms | 656 KB | Output is correct |
10 | Correct | 2 ms | 656 KB | Output is correct |
11 | Correct | 3 ms | 656 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 656 KB | Output is correct |
2 | Correct | 3 ms | 656 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 3 ms | 728 KB | Output is correct |
2 | Correct | 5 ms | 876 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 9 ms | 1404 KB | Output is correct |
2 | Correct | 16 ms | 2556 KB | Output is correct |
3 | Correct | 9 ms | 2556 KB | Output is correct |
4 | Correct | 7 ms | 2556 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 20 ms | 3588 KB | Output is correct |
2 | Correct | 39 ms | 6460 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 73 ms | 11488 KB | Output is correct |
2 | Correct | 75 ms | 11780 KB | Output is correct |
3 | Correct | 111 ms | 17320 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 137 ms | 18024 KB | Output is correct |
2 | Correct | 195 ms | 34408 KB | Output is correct |
3 | Correct | 252 ms | 35136 KB | Output is correct |
4 | Correct | 349 ms | 59092 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 359 ms | 59092 KB | Output is correct |
2 | Correct | 426 ms | 66052 KB | Output is correct |
3 | Correct | 280 ms | 66052 KB | Output is correct |
4 | Correct | 385 ms | 74892 KB | Output is correct |
5 | Correct | 467 ms | 88128 KB | Output is correct |
6 | Correct | 694 ms | 92472 KB | Output is correct |
7 | Correct | 415 ms | 119168 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 366 ms | 119168 KB | Output is correct |
2 | Correct | 354 ms | 119168 KB | Output is correct |
3 | Correct | 468 ms | 119168 KB | Output is correct |
4 | Correct | 478 ms | 119168 KB | Output is correct |
5 | Correct | 388 ms | 119168 KB | Output is correct |
6 | Correct | 467 ms | 119168 KB | Output is correct |
7 | Correct | 768 ms | 119168 KB | Output is correct |