#include <bits/stdc++.h>
using namespace std;
const int N = 1000000;
int a[N], l[N];
long long d[N], dp[N];
vector<int> g[N];
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
int n;
cin >> n;
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;
function<void(int, int)> Solve = [&](int v, int pv) {
for (int u : g[v]) {
if (d[u] != -2 || u == pv) {
continue;
}
Solve(u, v);
c = max(c, dp[v] + dp[u] + l[u]);
dp[v] = max(dp[v], dp[u] + l[u]);
}
};
for (int i : cyc) {
Solve(i, i);
c = max(c, dp[i]);
}
int sz = (int) cyc.size();
vector<long long> mx(sz);
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()];
for (int i = 0; i < sz; i++) {
int low = i + 1, high = sz - 1, pos = i;
while (low <= high) {
int 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++) {
int low = i + 1, high = sz - 1, pos = i;
while (low <= high) {
int 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]);
}
}
vector<long long>().swap(mx);
vector<int>().swap(cyc);
res += c;
}
cout << res << '\n';
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
9 ms |
23900 KB |
Output is correct |
2 |
Correct |
8 ms |
23900 KB |
Output is correct |
3 |
Correct |
8 ms |
23900 KB |
Output is correct |
4 |
Correct |
8 ms |
23900 KB |
Output is correct |
5 |
Correct |
8 ms |
23900 KB |
Output is correct |
6 |
Correct |
9 ms |
23900 KB |
Output is correct |
7 |
Correct |
8 ms |
23900 KB |
Output is correct |
8 |
Correct |
9 ms |
23900 KB |
Output is correct |
9 |
Correct |
9 ms |
23900 KB |
Output is correct |
10 |
Correct |
9 ms |
23908 KB |
Output is correct |
11 |
Correct |
8 ms |
23984 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
8 ms |
23900 KB |
Output is correct |
2 |
Correct |
9 ms |
23944 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
8 ms |
24000 KB |
Output is correct |
2 |
Correct |
9 ms |
24116 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
12 ms |
24668 KB |
Output is correct |
2 |
Correct |
19 ms |
25364 KB |
Output is correct |
3 |
Correct |
13 ms |
24932 KB |
Output is correct |
4 |
Correct |
11 ms |
24484 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
21 ms |
26236 KB |
Output is correct |
2 |
Correct |
27 ms |
28144 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
44 ms |
32448 KB |
Output is correct |
2 |
Correct |
55 ms |
36360 KB |
Output is correct |
3 |
Correct |
66 ms |
37108 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
77 ms |
41288 KB |
Output is correct |
2 |
Correct |
93 ms |
46896 KB |
Output is correct |
3 |
Correct |
131 ms |
56276 KB |
Output is correct |
4 |
Correct |
143 ms |
57608 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
124 ms |
49496 KB |
Output is correct |
2 |
Correct |
352 ms |
67296 KB |
Output is correct |
3 |
Correct |
145 ms |
57056 KB |
Output is correct |
4 |
Correct |
175 ms |
69208 KB |
Output is correct |
5 |
Correct |
171 ms |
68600 KB |
Output is correct |
6 |
Correct |
474 ms |
67424 KB |
Output is correct |
7 |
Correct |
215 ms |
76784 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
183 ms |
131072 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |