#include <bits/stdc++.h>
using namespace std;
void just_do_it();
int main() {
#ifdef KAMIRULEZ
freopen("kamirulez.inp", "r", stdin);
freopen("kamirulez.out", "w", stdout);
#endif
ios_base::sync_with_stdio(0);
cin.tie(0);
just_do_it();
return 0;
}
const int maxn = 1e6 + 20;
int to[maxn];
pair<int, int> edges[maxn * 2];
int adj_pt[maxn];
int par[maxn];
int len[maxn];
int depth[maxn];
pair<long long, int> dp[maxn];
bool flag[maxn];
bool is_cycle[maxn];
int cycle[maxn];
int lens[maxn];
int sz;
void dfs1(int u) {
flag[u] = true;
for (int pt = adj_pt[u]; edges[pt].first == u; pt++) {
int id = edges[pt].second;
if (id == par[u]) {
continue;
}
int v = id ^ to[id] ^ u;
if (!flag[v]) {
depth[v] = depth[u] + 1;
par[v] = id;
dfs1(v);
}
else {
if (depth[u] > depth[v]) {
int cur = u;
while (cur != v) {
cycle[sz] = cur;
lens[sz] = len[par[cur]];
sz++;
cur = par[cur] ^ to[par[cur]] ^ cur;
}
cycle[sz] = v;
lens[sz] = len[id];
sz++;
}
}
}
}
void dfs2(int u, int p) {
dp[u] = make_pair(0, u);
for (int pt = adj_pt[u]; edges[pt].first == u; pt++) {
int id = edges[pt].second;
int v = id ^ to[id] ^ u;
if (v != p && !is_cycle[v]) {
dfs2(v, u);
dp[u] = max(dp[u], make_pair(dp[v].first + len[id], dp[v].second));
}
}
}
long long res;
long long calc_max(int u) {
is_cycle[u] = false;
dfs2(u, -1);
long long max_depth = dp[u].first;
int v = dp[u].second;
dfs2(v, -1);
res = max(res, dp[v].first);
is_cycle[u] = true;
return max_depth;
}
long long solve() {
res = 0;
long long sum = 0;
for (int i = 0; i < sz; i++) {
is_cycle[cycle[i]] = true;
sum += lens[i];
}
long long dist = 0;
long long mx1 = calc_max(cycle[0]);
long long mx2 = mx1;
for (int i = 1; i < sz; i++) {
dist += lens[i - 1];
long long max_depth = calc_max(cycle[i]);
res = max(res, dist + max_depth + mx1);
res = max(res, sum - dist + max_depth + mx2);
mx1 = max(mx1, max_depth - dist);
mx2 = max(mx2, max_depth + dist);
}
return res;
}
void just_do_it() {
int n;
cin >> n;
for (int i = 1; i <= n; i++) {
cin >> to[i] >> len[i];
edges[i * 2 - 1] = make_pair(i, i);
edges[i * 2] = make_pair(to[i], i);
}
sort(edges + 1, edges + n * 2 + 1);
for (int i = 1; i <= n * 2; i++) {
if (edges[i].first != edges[i - 1].first) {
adj_pt[edges[i].first] = i;
}
}
long long res = 0;
for (int u = 1; u <= n; u++) {
if (!flag[u]) {
sz = 0;
par[u] = -1;
dfs1(u);
res += solve();
}
}
cout << res;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
340 KB |
Output is correct |
2 |
Correct |
1 ms |
324 KB |
Output is correct |
3 |
Correct |
1 ms |
460 KB |
Output is correct |
4 |
Correct |
1 ms |
340 KB |
Output is correct |
5 |
Correct |
1 ms |
340 KB |
Output is correct |
6 |
Correct |
1 ms |
340 KB |
Output is correct |
7 |
Correct |
1 ms |
340 KB |
Output is correct |
8 |
Correct |
1 ms |
340 KB |
Output is correct |
9 |
Correct |
1 ms |
332 KB |
Output is correct |
10 |
Correct |
1 ms |
340 KB |
Output is correct |
11 |
Correct |
1 ms |
328 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
460 KB |
Output is correct |
2 |
Correct |
1 ms |
392 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
464 KB |
Output is correct |
2 |
Correct |
3 ms |
804 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
9 ms |
1548 KB |
Output is correct |
2 |
Correct |
18 ms |
3808 KB |
Output is correct |
3 |
Correct |
16 ms |
1720 KB |
Output is correct |
4 |
Correct |
8 ms |
992 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
26 ms |
4940 KB |
Output is correct |
2 |
Correct |
31 ms |
7504 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
81 ms |
13044 KB |
Output is correct |
2 |
Correct |
91 ms |
19308 KB |
Output is correct |
3 |
Correct |
98 ms |
26792 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
130 ms |
23008 KB |
Output is correct |
2 |
Correct |
157 ms |
44308 KB |
Output is correct |
3 |
Correct |
212 ms |
54684 KB |
Output is correct |
4 |
Correct |
219 ms |
67800 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
369 ms |
52480 KB |
Output is correct |
2 |
Correct |
632 ms |
110976 KB |
Output is correct |
3 |
Correct |
235 ms |
54616 KB |
Output is correct |
4 |
Correct |
343 ms |
91720 KB |
Output is correct |
5 |
Correct |
324 ms |
91168 KB |
Output is correct |
6 |
Correct |
1165 ms |
66300 KB |
Output is correct |
7 |
Correct |
360 ms |
118960 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
330 ms |
131072 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |