#include <bits/stdc++.h>
using namespace std;
const int mxn=1000001;
const long long INF=1e18;
vector <int> ke[mxn],V[mxn];
queue <int> q;
int n,p[mxn],l[mxn],vis[mxn],last[mxn],r[mxn],idx,x;
bitset <mxn> ch;
long long dp[mxn],dp2[mxn],d[mxn],val,res,a,b,sum,s;
pair <long long, int> mx={-1,0},mx2={-1,0};
void dfs(int u){
for (int v:ke[u]){
d[v]=d[u]+l[v];
dfs(v);
dp[u]=max(dp[u],dp[v]+l[v]);
}
}
void dfs2(int u){
mx={-1,0},mx2={-1,0};
for (int v:ke[u]){
auto tmp=make_pair(dp[v]+l[v],v);
if (tmp>mx){
mx2=mx;
mx=tmp;
}
else
mx2=max(mx2,tmp);
}
for (int v:ke[u])
dp2[v]=max(dp2[u],(mx.second==v?mx2.first:mx.first))+l[v];
for (int v:ke[u])
dfs2(v);
}
int f(int i){
return (r[i]==i?i:r[i]=f(r[i]));
}
int main(){
ios_base::sync_with_stdio(NULL);cin.tie(nullptr);
cin >> n;
for (int i=1;i<=n;i++){
cin >> p[i] >> l[i];
last[p[i]]++;
}
iota(r,r+n+1,0);
for (int i=1;i<=n;i++)
if (!last[i])
q.push(i);
while (!q.empty()){
int u=q.front();
q.pop();
ch[u]=1;
ke[p[u]].push_back(u);
r[f(u)]=f(p[u]);
if (!--last[p[u]])
q.push(p[u]);
}
for (int i=1;i<=n;i++)
if (f(i)==i){
dfs(i);
dfs2(i);
}
memset(last,0,sizeof(last));
for (int i=1;i<=n;i++){
vector <int>().swap(ke[i]);
V[f(i)].push_back(i);
}
for (int i=1;i<=n;i++){
if (vis[i]||ch[i])
continue;
sum=0,a=-INF,b=-INF;
int j=i;
while (true){
sum+=l[j];
vis[j]=1;
last[p[j]]=j;
j=p[j];
if (j==i)
break;
}
val=0,s=sum;
for (int j=last[i];;j=last[j]){
for (int u:V[j])
val=max(val,max(max(dp[u],dp2[u]),d[u]+max(a-s,b+sum+s)));
a=max(a,dp[j]+s);
b=max(b,dp[j]-s);
s-=l[last[j]];
if (j==i)
break;
}
res+=val;
}
cout << res;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
19 ms |
61528 KB |
Output is correct |
2 |
Correct |
13 ms |
61532 KB |
Output is correct |
3 |
Correct |
12 ms |
61532 KB |
Output is correct |
4 |
Correct |
13 ms |
61532 KB |
Output is correct |
5 |
Correct |
13 ms |
61532 KB |
Output is correct |
6 |
Correct |
13 ms |
61628 KB |
Output is correct |
7 |
Correct |
14 ms |
61532 KB |
Output is correct |
8 |
Correct |
13 ms |
61532 KB |
Output is correct |
9 |
Correct |
12 ms |
61532 KB |
Output is correct |
10 |
Correct |
13 ms |
61532 KB |
Output is correct |
11 |
Correct |
13 ms |
61532 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
13 ms |
61532 KB |
Output is correct |
2 |
Correct |
13 ms |
61632 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
13 ms |
61788 KB |
Output is correct |
2 |
Correct |
13 ms |
61788 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
19 ms |
62176 KB |
Output is correct |
2 |
Correct |
23 ms |
65116 KB |
Output is correct |
3 |
Correct |
19 ms |
62636 KB |
Output is correct |
4 |
Correct |
16 ms |
62044 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
28 ms |
65372 KB |
Output is correct |
2 |
Correct |
31 ms |
65360 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
63 ms |
71508 KB |
Output is correct |
2 |
Correct |
54 ms |
70448 KB |
Output is correct |
3 |
Correct |
71 ms |
72992 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
94 ms |
80980 KB |
Output is correct |
2 |
Correct |
124 ms |
88152 KB |
Output is correct |
3 |
Correct |
113 ms |
86352 KB |
Output is correct |
4 |
Correct |
144 ms |
96596 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
175 ms |
94660 KB |
Output is correct |
2 |
Correct |
450 ms |
99156 KB |
Output is correct |
3 |
Correct |
184 ms |
98032 KB |
Output is correct |
4 |
Correct |
245 ms |
108628 KB |
Output is correct |
5 |
Correct |
218 ms |
106324 KB |
Output is correct |
6 |
Correct |
737 ms |
120384 KB |
Output is correct |
7 |
Correct |
215 ms |
112588 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
205 ms |
131072 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |