# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
439995 |
2021-07-01T11:15:28 Z |
dutch |
Islands (IOI08_islands) |
C++17 |
|
479 ms |
131076 KB |
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const int LIM = 1e6;
vector<array<int, 2>> a(LIM), g[LIM];
int r, p[LIM], dfsTimer, t0[LIM], t1[LIM];
ll best, d[LIM], s[LIM], pre[2*LIM], suf[2*LIM];
bitset<LIM> vis;
void dfs(int u, int par){
s[u] = d[u], p[u] = par;
t0[u] = dfsTimer++;
ll curr = 0;
for(auto &[v, w] : g[u]) if(v != par && v != r){
d[v] = d[u] + (ll)w; dfs(v, u);
s[u] = max(s[u], s[v]);
best = max(best, curr + s[v] - d[u]);
curr = max(curr, s[v] - d[u]);
}
t1[u] = dfsTimer++;
pre[t0[u]] = suf[t0[u]] = d[u];
pre[t1[u]] = suf[t1[u]] = 0;
}
void findCycle(int u, int par){
vis[u] = 1;
for(auto &[v, w] : g[u]) if(v != par){
if(vis[v]) return void(r = v);
findCycle(v, u);
if(r >= 0) return;
}
vis[u] = 0;
}
int main(){
ios_base::sync_with_stdio(0); cin.tie(0);
int n; cin >> n;
for(int i=0; i<n; ++i){
cin >> a[i][0] >> a[i][1];
g[--a[i][0]].push_back({i, a[i][1]});
}
fill(p, p+n, -1);
ll ans = 0;
int cnt = 0;
for(int z=0; z<n; ++z){
if(p[z] >= 0) continue;
r = -1, best = 0;
findCycle(z, z);
bool cycle = r >= 0;
if(!cycle) r = z;
dfsTimer = 0;
dfs(r, r);
if(!cycle){
ans += best;
continue;
}else ++cnt;
for(int i=1; i<dfsTimer; ++i) pre[i] = max(pre[i], pre[i-1]);
for(int i=dfsTimer-2; i>=0; --i) suf[i] = max(suf[i], suf[i+1]);
int u = a[r][0], last = -1;
ll res = 0;
while(u != r){
ll mx = 0;
for(auto &[v, w] : g[u])
if(v != last) mx = max(mx, s[v] - d[u]);
ll ex = 0;
if(t0[u]) ex = max(ex, pre[t0[u]-1]);
if(t1[u] + 1 < dfsTimer) ex = max(ex, suf[t1[u]+1]);
res = max(res, d[a[r][0]] - d[u] + mx + ex);
last = u;
u = p[u];
}
res += a[r][1];
ans += max(best, res);
}
assert(cnt == 1);
cout << ans;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
20 ms |
31564 KB |
Output is correct |
2 |
Runtime error |
59 ms |
64068 KB |
Execution killed with signal 6 |
3 |
Correct |
19 ms |
31692 KB |
Output is correct |
4 |
Runtime error |
53 ms |
64040 KB |
Execution killed with signal 6 |
5 |
Runtime error |
59 ms |
64012 KB |
Execution killed with signal 6 |
6 |
Runtime error |
58 ms |
63972 KB |
Execution killed with signal 6 |
7 |
Runtime error |
56 ms |
63964 KB |
Execution killed with signal 6 |
8 |
Runtime error |
60 ms |
64028 KB |
Execution killed with signal 6 |
9 |
Runtime error |
58 ms |
64100 KB |
Execution killed with signal 6 |
10 |
Runtime error |
54 ms |
64076 KB |
Execution killed with signal 6 |
11 |
Runtime error |
59 ms |
64052 KB |
Execution killed with signal 6 |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
21 ms |
31692 KB |
Output is correct |
2 |
Runtime error |
62 ms |
64164 KB |
Execution killed with signal 6 |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
56 ms |
64192 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
70 ms |
66008 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
47 ms |
36996 KB |
Output is correct |
2 |
Runtime error |
100 ms |
77972 KB |
Execution killed with signal 6 |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
106 ms |
48920 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
219 ms |
108096 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
479 ms |
131072 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
412 ms |
131076 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |