# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
56542 | admin | Islands (IOI08_islands) | C++14 | 950 ms | 104264 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const int N = 1000010;
const ll INF = 1e18;
ll par[N], len[N], deg[N], h1[N], h2[N], dp[N];
int main()
{
int n;
scanf("%d", &n);
for (int i = 1; i <= n; ++i) {
int v, w;
scanf("%d%d", &v, &w);
par[i] = v;
len[i] = w;
++deg[v];
}
queue<int> Q;
for (int i = 1; i <= n; ++i) {
if (deg[i] == 0)
Q.push(i);
}
while (!Q.empty()) {
int u = Q.front(); Q.pop();
int v = par[u];
ll w = len[u];
if (h1[u]+w > h1[v]) {
h2[v] = h1[v];
h1[v] = h1[u]+w;
} else if (h1[u]+w > h2[v]) {
h2[v] = h1[u]+w;
}
dp[u] = max(dp[u], h1[u]+h2[u]);
dp[v] = max(dp[v], dp[u]);
if (--deg[v] == 0)
Q.push(v);
}
ll ttans = 0;
for (int i = 1; i <= n; ++i) {
if (deg[i] == 1) {
int u = i;
vector<int> cyc;
ll ttd = 0;
do {
cyc.push_back(u);
deg[u] = 0;
ttd += len[u];
u = par[u];
} while (u != i);
ll mxm = -INF, mxp = -INF, d = 0, ans = -INF;
for (auto u : cyc) {
dp[u] = max(dp[u], h1[u]+h2[u]);
ans = max(ans, dp[u]);
ans = max(ans, h1[u]+d+mxm);
ans = max(ans, h1[u]-d+ttd+mxp);
mxm = max(mxm, h1[u]-d);
mxp = max(mxp, h1[u]+d);
d += len[u];
}
ttans += ans;
}
}
printf("%lld\n", ttans);
return 0;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |