#include <bits/stdc++.h>
using namespace std;
int N;
vector<pair<int, int>> adj[1000005];
bitset<1000005> visited;
bitset<1000005> cycle;
pair<int, int> parent[1000005];
int cyc, cyc2;
int cycval;
long long far[1000005];
long long dp[1000005];
vector<int> chd[1000005];
void dfs(const int &v, const int &p, const int &asg)
{
visited[v] = true;
parent[v] = make_pair(p, asg);
int cnt = 0;
int tmp;
for(auto &i:adj[v]){
if(i.first==p){
++cnt;
if(cnt==1) tmp = i.second;
else{
if(cyc == -1){
cyc = v;
cyc2 = i.first;
cycle[v] = true;
cycval = (tmp == asg) ? i.second : tmp;
}
}
continue;
}
if(visited[i.first]){
if(cyc == -1){
cyc = v;
cyc2 = i.first;
cycval = i.second;
cycle[v] = true;
}
continue;
}
dfs(i.first, v, i.second);
}
}
void treedfs(const int &v, const int &prv, const int &p)
{
chd[p].push_back(v);
for(auto &i:adj[v]){
if(i.first == prv || cycle[i.first]) continue;
dp[i.first] = dp[v] + i.second;
treedfs(i.first, v, p);
}
}
void treedfs2(const int &v, const int &prv, const int &p)
{
for(auto &i:adj[v]){
if(cycle[i.first] && i.first != p) continue;
if(i.first == prv) continue;
dp[i.first] = dp[v] + i.second;
treedfs2(i.first, v, p);
}
}
int main()
{
ios::sync_with_stdio(false); cin.tie(0);
long long ans = 0;
cin>>N;
int tmp, k;
for(int i=1;i<=N;i++){
cin>>tmp>>k;
adj[tmp].push_back(make_pair(i, k));
adj[i].push_back(make_pair(tmp, k));
}
for(int i=0;i<1000005;i++) adj[i].shrink_to_fit();
int cycstart, cycend, tt;
long long cur, dsp, sub;
long long m; int loc;
vector<int> fun, val;
for(int i=1;i<=N;i++){
if(visited[i]) continue;
long long tmpans = 0;
vector<int>().swap(fun);
vector<int>().swap(val);
cyc = -1;
cyc2 = -1;
dfs(i, 0, 0);
cycstart = cyc;
cycend = cyc2;
fun.push_back(cycstart);
val.push_back(cycval);
while(cycstart != cycend){
tt = parent[cycstart].second;
cycstart = parent[cycstart].first;
cycle[cycstart] = true;
fun.push_back(cycstart);
val.push_back(tt);
}
fun.shrink_to_fit();
val.shrink_to_fit();
for(int i:fun){
treedfs(i, i, i);
m = -1;
for(int k:chd[i]){
if(dp[k] > m){
m = dp[k];
loc = k;
}
}
far[i] = m;
dp[loc] = 0;
treedfs2(loc, loc, i);
m = -1;
for(int k:chd[i]) m = max(m, dp[k]);
tmpans = max(tmpans, m);
}
multiset<long long> heap;
cur = dsp = sub = 0;
for(int i=1;i<(int)fun.size();i++){
cur += val[i];
heap.insert(cur+far[fun[i]]);
}
tmpans = max(tmpans, *--heap.end()+far[fun[0]]);
for(int i=1;i<(int)fun.size();i++){
dsp += val[i];
heap.erase(heap.find(dsp + far[fun[i]]));
sub += val[i];
cur += val[i-1];
heap.insert(cur+far[fun[i-1]]);
tmpans = max(tmpans, *--heap.end()+far[fun[i]]-sub);
}
heap.clear();
cur = dsp = sub = 0;
for(int i=(int)fun.size()-2;i>=0;i--){
cur += val[i+1];
heap.insert(cur+far[fun[i]]);
}
tmpans = max(tmpans, *--heap.end()+far[fun.back()]);
for(int i=(int)fun.size()-2;i>=0;i--){
sub += val[i+1];
dsp += val[i+1];
cur += val[(i+2)%val.size()];
heap.erase(heap.find(dsp+far[fun[i]]));
heap.insert(cur+far[fun[(i+1)%fun.size()]]);
tmpans = max(tmpans, *--heap.end() + far[fun[i]]-sub);
}
ans += tmpans;
}
cout<<ans<<'\n';
}
Compilation message
islands.cpp: In function 'void dfs(const int&, const int&, const int&)':
islands.cpp:29:28: warning: 'tmp' may be used uninitialized in this function [-Wmaybe-uninitialized]
29 | cycval = (tmp == asg) ? i.second : tmp;
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
31 ms |
47224 KB |
Output is correct |
2 |
Correct |
25 ms |
47272 KB |
Output is correct |
3 |
Correct |
25 ms |
47328 KB |
Output is correct |
4 |
Correct |
24 ms |
47316 KB |
Output is correct |
5 |
Correct |
26 ms |
47248 KB |
Output is correct |
6 |
Correct |
25 ms |
47188 KB |
Output is correct |
7 |
Correct |
29 ms |
47232 KB |
Output is correct |
8 |
Correct |
30 ms |
47296 KB |
Output is correct |
9 |
Correct |
31 ms |
47272 KB |
Output is correct |
10 |
Correct |
28 ms |
47292 KB |
Output is correct |
11 |
Correct |
26 ms |
47300 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
26 ms |
47336 KB |
Output is correct |
2 |
Correct |
25 ms |
47376 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
28 ms |
47444 KB |
Output is correct |
2 |
Correct |
29 ms |
47840 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
38 ms |
48688 KB |
Output is correct |
2 |
Correct |
52 ms |
51856 KB |
Output is correct |
3 |
Correct |
38 ms |
48868 KB |
Output is correct |
4 |
Correct |
31 ms |
48048 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
62 ms |
53608 KB |
Output is correct |
2 |
Correct |
94 ms |
56960 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
122 ms |
63100 KB |
Output is correct |
2 |
Correct |
232 ms |
74428 KB |
Output is correct |
3 |
Correct |
292 ms |
87204 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
264 ms |
78632 KB |
Output is correct |
2 |
Correct |
386 ms |
110752 KB |
Output is correct |
3 |
Correct |
758 ms |
131004 KB |
Output is correct |
4 |
Runtime error |
330 ms |
131072 KB |
Execution killed with signal 9 |
5 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
298 ms |
110292 KB |
Output is correct |
2 |
Runtime error |
484 ms |
131072 KB |
Execution killed with signal 9 |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
336 ms |
131072 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |