#include <bits/stdc++.h>
using namespace std;
const int N = 1000000;
int a[N], l[N];
long long d[N], dp[N], mx[N];
vector<int> g[N];
long long Solve(int v, int pv) {
long long mx = 0;
while (!g[v].empty()) {
int u = g[v].back();
g[v].pop_back();
if (d[u] != -2 || u == pv) {
continue;
}
mx = max(mx, Solve(u, v));
mx = max(mx, dp[v] + dp[u] + l[u]);
dp[v] = max(dp[v], dp[u] + l[u]);
}
return mx;
}
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
int n;
cin >> n;
assert(n <= 500000);
for (int i = 0; i < n; i++) {
cin >> a[i] >> l[i];
--a[i];
}
for (int i = 0; i < n; i++) {
g[a[i]].push_back(i);
}
long long res = 0;
for (int i = 0; i < n; i++) {
d[i] = -1;
}
for (int i = 0; i < n; i++) {
if (d[i] != -1) {
continue;
}
vector<int> cyc(1, i);
d[i] = 0;
for (int b = 0; b < (int) cyc.size(); b++) {
int x = cyc[b];
if (d[a[x]] == -1) {
d[a[x]] = 0;
cyc.push_back(a[x]);
}
for (int y : g[x]) {
if (d[y] == -1) {
d[y] = 0;
cyc.push_back(y);
}
}
}
for (int x : cyc) {
d[x] = -1;
}
int x = i;
while (d[x] == -1) {
d[x] = 0;
x = a[x];
}
for (int x : cyc) {
d[x] = -2;
}
int y = a[x];
vector<int>(1, x).swap(cyc);
while (y != x) {
cyc.push_back(y);
y = a[y];
}
d[cyc[0]] = 0;
for (int i = 1; i < (int) cyc.size(); i++) {
int x = cyc[i - 1], y = cyc[i];
d[y] = d[x] + l[x];
}
long long c = 0;
for (int i : cyc) {
c = max(c, Solve(i, i));
c = max(c, dp[i]);
}
int sz = (int) cyc.size();
for (int i = sz - 1; i >= 0; i--) {
if (i + 1 < sz) {
mx[i] = mx[i + 1];
} else {
mx[i] = d[cyc[i]] + dp[cyc[i]];
}
// mx[i][0] = max(mx[i][0], d[cyc[i]] + dp[cyc[i]]);
// mx[i][1] = max(mx[i][1], -d[cyc[i]] + dp[cyc[i]]);
mx[i] = max(mx[i], d[cyc[i]] + dp[cyc[i]]);
}
long long t = d[cyc.back()] + l[cyc.back()];
int low, high, pos, mid;
for (int i = 0; i < sz; i++) {
low = i + 1, high = sz - 1, pos = i;
while (low <= high) {
mid = (low + high) >> 1;
if (t - (d[cyc[mid]] - d[cyc[i]]) >= (d[cyc[mid]] - d[cyc[i]])) {
pos = mid;
low = mid + 1;
} else {
high = mid - 1;
}
}
if (pos + 1 < sz) {
c = max(c, -d[cyc[i]] + dp[cyc[i]] + mx[pos + 1]);
}
}
for (int i = sz - 1; i >= 0; i--) {
if (i + 1 < sz) {
mx[i] = mx[i + 1];
} else {
mx[i] = -d[cyc[i]] + dp[cyc[i]];
}
mx[i] = max(mx[i], -d[cyc[i]] + dp[cyc[i]]);
}
for (int i = 0; i < sz; i++) {
low = i + 1, high = sz - 1, pos = i;
while (low <= high) {
mid = (low + high) >> 1;
if (t - (d[cyc[mid]] - d[cyc[i]]) >= (d[cyc[mid]] - d[cyc[i]])) {
pos = mid;
low = mid + 1;
} else {
high = mid - 1;
}
}
if (pos > i) {
c = max(c, t + d[cyc[i]] + dp[cyc[i]] + mx[i + 1]);
}
}
res += c;
}
cout << res << '\n';
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
10 ms |
23900 KB |
Output is correct |
2 |
Correct |
8 ms |
23940 KB |
Output is correct |
3 |
Correct |
10 ms |
23852 KB |
Output is correct |
4 |
Correct |
8 ms |
23900 KB |
Output is correct |
5 |
Correct |
10 ms |
23900 KB |
Output is correct |
6 |
Correct |
8 ms |
23736 KB |
Output is correct |
7 |
Correct |
9 ms |
23900 KB |
Output is correct |
8 |
Correct |
10 ms |
23900 KB |
Output is correct |
9 |
Correct |
10 ms |
23900 KB |
Output is correct |
10 |
Correct |
8 ms |
23736 KB |
Output is correct |
11 |
Correct |
8 ms |
23900 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
9 ms |
23900 KB |
Output is correct |
2 |
Correct |
8 ms |
23900 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
10 ms |
23900 KB |
Output is correct |
2 |
Correct |
10 ms |
23984 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
11 ms |
24664 KB |
Output is correct |
2 |
Correct |
17 ms |
25548 KB |
Output is correct |
3 |
Correct |
12 ms |
24972 KB |
Output is correct |
4 |
Correct |
11 ms |
24408 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
19 ms |
26140 KB |
Output is correct |
2 |
Correct |
27 ms |
28360 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
40 ms |
32440 KB |
Output is correct |
2 |
Correct |
53 ms |
36400 KB |
Output is correct |
3 |
Correct |
59 ms |
37108 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
75 ms |
41460 KB |
Output is correct |
2 |
Correct |
89 ms |
46692 KB |
Output is correct |
3 |
Runtime error |
23 ms |
48220 KB |
Execution killed with signal 6 |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
22 ms |
48216 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
22 ms |
48220 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |