#include <bits/stdc++.h>
#define ll long long
#define db long double
#define N 1000005
#define II pair <int,int>
#define III pair <ll,II>
#define IV pair <vector <int>,vector <int> >
#define fst first
#define snd second
#define BIT(x,i) ((x>>i)&1)
#define Log(x) (31-__builtin_clz((int)x))
#define LogLL(x) (63-__builtin_clzll((ll)x))
#define pi acos(-1)
#define to_radian(x) (x*pi/180.0)
#define to_degree(x) (x*180.0/pi)
using namespace std;
vector <int> a[N];
struct edge { int u,v,k; };
edge e[N];
int tr[N],trc[N],cycle[N],nxt[N];
bool incycle[N],visited[N];
ll n,i,u,v,k,c[N],dis[N],ncycle,sum,res;
const ll oo=round(1e18);
struct Fenwick_Tree
{
ll bit[N],d[N],n;
void Init(int _n)
{
n=_n;
for(int i=1;i<=n;i++) bit[i]=d[i]=-oo;
}
void update(int i,ll k)
{
d[i]=max(d[i],k);
while(i<=n) bit[i]=max(bit[i],k),i+=(i & -i);
}
ll get(int l,int r)
{
ll res=-oo,i=r;
while(i>=l)
if(i-(i & -i)>=l) res=max(res,bit[i]),i-=(i & -i);
else res=max(res,d[i]),i--;
return res;
}
} FT;
void dfs(int u)
{
visited[u]=1;
auto consider=[&](int adj)
{
int v=(e[adj].u==u ? e[adj].v : e[adj].u);
if(visited[v]==0) dfs(v);
};
for(int adj:a[u]) consider(adj);
consider(nxt[u]);
}
void Find_cycle(int u,int x)
{
auto consider=[&](int adj)
{
if(adj==x) return;
int v=v=(e[adj].u==u ? e[adj].v : e[adj].u),k=e[adj].k;
if(tr[v]==0)
{
tr[v]=u; trc[v]=k;
Find_cycle(v,adj);
}
else if(ncycle==0)
{
sum=0;
while(u!=v)
{
cycle[++ncycle]=u; incycle[u]=1;
dis[ncycle]=sum; sum+=trc[u];
u=tr[u];
}
cycle[++ncycle]=u; incycle[u]=1;
dis[ncycle]=sum; sum+=k;
return ;
}
};
for(int adj:a[u]) consider(adj);
consider(nxt[u]);
}
/////////////////////////////////////////////////////////////////////////////
ll cal(int u,int p,ll &ma)
{
ll res=0,ma0=0,ma1=0;
auto consider=[&](int adj)
{
int v=v=(e[adj].u==u ? e[adj].v : e[adj].u);;
if(v!=p && incycle[v]==0)
{
ll k=cal(v,u,ma)+e[adj].k;
res=max(res,k);
if(ma0<k) ma0=k;
if(ma1<ma0) swap(ma1,ma0);
}
};
for(int adj:a[u]) consider(adj);
consider(nxt[u]);
ma=max(ma,ma0+ma1);
return res;
}
ll Work()
{
int i,u,v;
FT.Init(ncycle);
ll res=0;
for(i=1;i<=ncycle;i++)
{
u=cycle[i];
c[i]=cal(u,0,res);
FT.update(i,c[i]-dis[i]);
}
for(i=1;i<ncycle;i++)
{
int l=i,r=ncycle;
while(l<r)
{
int mid=(l+r+1)>>1;
if(sum-(dis[mid]-dis[i])>=dis[mid]-dis[i])
l=mid;
else r=mid-1;
}
res=max(res,c[i]+sum+dis[i]+FT.get(i+1,l));
}
FT.Init(ncycle);
for(i=1;i<=ncycle;i++)
{
u=cycle[i];
FT.update(i,c[i]+dis[i]);
}
for(i=1;i<ncycle;i++)
{
int l=i,r=ncycle;
while(l<r)
{
int mid=(l+r+1)>>1;
if(sum-(dis[mid]-dis[i])>=dis[mid]-dis[i])
l=mid;
else r=mid-1;
}
res=max(res,c[i]-dis[i]+FT.get(l+1,ncycle));
}
return res;
}
int main()
{
// freopen("islands.inp","r",stdin);
// freopen("islands.out","w",stdout);
ios_base::sync_with_stdio(0);
cin.tie(0); cout.tie(0);
cin>>n;
for(u=1;u<=n;u++)
{
cin>>v>>k;
nxt[u]=u; a[v].push_back(u);
e[u]={ u,v,k };
}
for(u=1;u<=n;u++)
if(visited[u]==0)
{
dfs(u);
tr[u]=-1;
ncycle=0;
Find_cycle(u,0);
res+=Work();
}
cout<<res;
}
Compilation message
islands.cpp: In lambda function:
islands.cpp:64:16: warning: operation on 'v' may be undefined [-Wsequence-point]
64 | int v=v=(e[adj].u==u ? e[adj].v : e[adj].u),k=e[adj].k;
| ~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
islands.cpp: In lambda function:
islands.cpp:95:16: warning: operation on 'v' may be undefined [-Wsequence-point]
95 | int v=v=(e[adj].u==u ? e[adj].v : e[adj].u);;
| ~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
islands.cpp: In function 'long long int Work()':
islands.cpp:111:13: warning: unused variable 'v' [-Wunused-variable]
111 | int i,u,v;
| ^
islands.cpp: In function 'int main()':
islands.cpp:164:16: warning: narrowing conversion of 'u' from 'long long int' to 'int' [-Wnarrowing]
164 | e[u]={ u,v,k };
| ^
islands.cpp:164:18: warning: narrowing conversion of 'v' from 'long long int' to 'int' [-Wnarrowing]
164 | e[u]={ u,v,k };
| ^
islands.cpp:164:20: warning: narrowing conversion of 'k' from 'long long int' to 'int' [-Wnarrowing]
164 | e[u]={ u,v,k };
| ^
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
8 ms |
43352 KB |
Output is correct |
2 |
Correct |
8 ms |
43356 KB |
Output is correct |
3 |
Correct |
8 ms |
43356 KB |
Output is correct |
4 |
Correct |
7 ms |
43356 KB |
Output is correct |
5 |
Correct |
8 ms |
43356 KB |
Output is correct |
6 |
Correct |
8 ms |
43356 KB |
Output is correct |
7 |
Correct |
7 ms |
43356 KB |
Output is correct |
8 |
Correct |
8 ms |
43196 KB |
Output is correct |
9 |
Correct |
8 ms |
43356 KB |
Output is correct |
10 |
Correct |
9 ms |
43356 KB |
Output is correct |
11 |
Correct |
7 ms |
43352 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
8 ms |
43356 KB |
Output is correct |
2 |
Correct |
8 ms |
43356 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
9 ms |
43352 KB |
Output is correct |
2 |
Correct |
9 ms |
43612 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
13 ms |
43608 KB |
Output is correct |
2 |
Correct |
21 ms |
47196 KB |
Output is correct |
3 |
Correct |
15 ms |
43612 KB |
Output is correct |
4 |
Correct |
10 ms |
43604 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
25 ms |
49984 KB |
Output is correct |
2 |
Correct |
36 ms |
51032 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
58 ms |
53128 KB |
Output is correct |
2 |
Correct |
94 ms |
67152 KB |
Output is correct |
3 |
Correct |
114 ms |
72708 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
114 ms |
62716 KB |
Output is correct |
2 |
Correct |
171 ms |
86960 KB |
Output is correct |
3 |
Correct |
270 ms |
104812 KB |
Output is correct |
4 |
Correct |
263 ms |
114768 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
200 ms |
63672 KB |
Output is correct |
2 |
Correct |
739 ms |
131072 KB |
Output is correct |
3 |
Correct |
217 ms |
86580 KB |
Output is correct |
4 |
Correct |
329 ms |
124120 KB |
Output is correct |
5 |
Correct |
325 ms |
121428 KB |
Output is correct |
6 |
Correct |
1119 ms |
93932 KB |
Output is correct |
7 |
Runtime error |
254 ms |
131072 KB |
Execution killed with signal 9 |
8 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
218 ms |
131072 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |