#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;
struct edge { int u,num,k; };
vector <edge> a[N];
int tr[N],trc[N],incycle[N],cycle[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_sub,FT_sum;
void dfs(int u)
{
visited[u]=1;
for(edge adj:a[u])
{
int v=adj.u;
if(visited[v]==0) dfs(v);
}
}
void Find_cycle(int u,int x)
{
for(edge adj:a[u])
{
if(adj.num==x) continue;
int v=adj.u,k=adj.k;
if(tr[v]==0)
{
tr[v]=u; trc[v]=k;
Find_cycle(v,adj.num);
}
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 ;
}
}
}
/////////////////////////////////////////////////////////////////////////////
ll cal(int u,int p,ll &ma)
{
ll res=0;
vector <ll> vec;
for(edge adj:a[u])
{
int v=adj.u;
if(v!=p && incycle[v]==0)
{
ll k=cal(v,u,ma)+adj.k;
res=max(res,k);
vec.push_back(k);
}
}
sort(vec.rbegin(),vec.rend());
if(vec.size()>=2) ma=max(ma,vec[0]+vec[1]);
return res;
}
ll Work()
{
int i,u,v;
FT_sub.Init(ncycle);
FT_sum.Init(ncycle);
ll res=0;
for(i=1;i<=ncycle;i++)
{
u=cycle[i];
// cerr<<u<<" "<<sum<<'\n';
c[i]=cal(u,0,res);
FT_sub.update(i,c[i]-dis[i]);
FT_sum.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,max(c[i]+sum+dis[i]+FT_sub.get(i+1,l),c[i]-dis[i]+FT_sum.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;
a[u].push_back({ v,u,k }); a[v].push_back({ u,u,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 function 'long long int Work()':
islands.cpp:104:13: warning: unused variable 'v' [-Wunused-variable]
104 | int i,u,v;
| ^
islands.cpp: In function 'int main()':
islands.cpp:140:26: warning: narrowing conversion of 'v' from 'long long int' to 'int' [-Wnarrowing]
140 | a[u].push_back({ v,u,k }); a[v].push_back({ u,u,k });
| ^
islands.cpp:140:28: warning: narrowing conversion of 'u' from 'long long int' to 'int' [-Wnarrowing]
140 | a[u].push_back({ v,u,k }); a[v].push_back({ u,u,k });
| ^
islands.cpp:140:30: warning: narrowing conversion of 'k' from 'long long int' to 'int' [-Wnarrowing]
140 | a[u].push_back({ v,u,k }); a[v].push_back({ u,u,k });
| ^
islands.cpp:140:53: warning: narrowing conversion of 'u' from 'long long int' to 'int' [-Wnarrowing]
140 | a[u].push_back({ v,u,k }); a[v].push_back({ u,u,k });
| ^
islands.cpp:140:55: warning: narrowing conversion of 'u' from 'long long int' to 'int' [-Wnarrowing]
140 | a[u].push_back({ v,u,k }); a[v].push_back({ u,u,k });
| ^
islands.cpp:140:57: warning: narrowing conversion of 'k' from 'long long int' to 'int' [-Wnarrowing]
140 | a[u].push_back({ v,u,k }); a[v].push_back({ u,u,k });
| ^
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
8 ms |
45144 KB |
Output is correct |
2 |
Correct |
9 ms |
45148 KB |
Output is correct |
3 |
Correct |
8 ms |
45144 KB |
Output is correct |
4 |
Correct |
8 ms |
45148 KB |
Output is correct |
5 |
Correct |
8 ms |
45160 KB |
Output is correct |
6 |
Correct |
8 ms |
45148 KB |
Output is correct |
7 |
Correct |
8 ms |
45144 KB |
Output is correct |
8 |
Correct |
8 ms |
45148 KB |
Output is correct |
9 |
Correct |
7 ms |
45136 KB |
Output is correct |
10 |
Correct |
8 ms |
45148 KB |
Output is correct |
11 |
Correct |
8 ms |
45148 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
8 ms |
45148 KB |
Output is correct |
2 |
Correct |
8 ms |
45204 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
9 ms |
45144 KB |
Output is correct |
2 |
Correct |
10 ms |
45220 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
14 ms |
45916 KB |
Output is correct |
2 |
Correct |
24 ms |
49864 KB |
Output is correct |
3 |
Correct |
16 ms |
45916 KB |
Output is correct |
4 |
Correct |
11 ms |
45592 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
27 ms |
50780 KB |
Output is correct |
2 |
Correct |
38 ms |
52312 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
69 ms |
57172 KB |
Output is correct |
2 |
Correct |
89 ms |
66176 KB |
Output is correct |
3 |
Correct |
112 ms |
78540 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
130 ms |
69784 KB |
Output is correct |
2 |
Correct |
180 ms |
98900 KB |
Output is correct |
3 |
Correct |
240 ms |
102204 KB |
Output is correct |
4 |
Correct |
280 ms |
131072 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
293 ms |
109744 KB |
Output is correct |
2 |
Runtime error |
516 ms |
131072 KB |
Execution killed with signal 9 |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
247 ms |
131072 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |