This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
#define fi first
#define se second
///Input format is not always nice, first nodes may not be in the keychain ring
using namespace std;
typedef long long ll;
typedef pair<int,int> ii;
typedef pair<ll, int> li;
int n;
vector<ii> G[1000005];
ll P[1000005];
int ord[1000005];
int a[1000005], L[1000005];
int D[1000005];
int Pct;
bool vis[1000005];
bool incyc[1000005];
ll ANS;
ll ans;
int cyclehead;
void dfs(int root){
int h = root, t = root;
do{
//printf("%d %d\n",h,t);
h = a[a[h]];
t = a[t];
}
while (h != t);
do{
//printf("%d ",t);
ord[Pct++] = t;
incyc[t] = 1;
t = a[t];
}
while (t != h);
}
ll dfs2(int u, int p){
vis[u] = 1;
ll d2 = 0;
ll d = 0;
for (auto v: G[u]){
if (v.fi == p || incyc[v.fi]) continue;
ll nd = dfs2(v.fi,u)+v.se;
if (d <= nd){
d2 = d;
d = nd;
}
else d2 = max(d2,nd);
}
ans = max(ans,d2+d);
return d;
}
ll solve(int root){
ans = Pct = 0;
dfs(root);
//printf("at %d\n",root);
reverse(ord,ord+Pct);
for (int i = 0; i < Pct; i++){
P[i] = dfs2(ord[i],-1);
D[i] = L[ord[i]];
//printf("%d: %d %d\n",x.fi,d[x.fi],x.se);
}
if (Pct == 2){
return max(ans,P[0]+P[1]+max(D[0],D[1]));
}
ll S = 0;
ll Sl = 0;
for (int i = 0; i < Pct; i++){
S += D[i];
}
ll MX = P[0];
ll MX2 = P[0];
for (int i = 1; i < Pct; i++){
ll x = P[i];
//printf("at %lld %lld\n",d[x],Sl[x]);
//printf("MX: %lld + %lld\n",MX,d[x] + Sl[x]);
//printf("MX2: %lld + %lld\n",MX2,S + d[x] - Sl[x]);
Sl += D[i-1];
ans = max(ans, x + Sl + MX);
ans = max(ans, S + x - Sl + MX2);
MX = max(MX, x - Sl);
MX2 = max(MX2, x + Sl);
}
//printf("%lld max\n",ans);
return ans;
}
int main(){
scanf("%d",&n);
int j,_L;
for (int i = 1; i <= n; i++){
scanf("%d%d",&j,&_L);
a[i] = j;
L[i] = _L;
G[i].push_back({j,_L});
G[j].push_back({i,_L});
}
for (int i = 1; i <= n; i++){
if (vis[i] == 0){
ANS += solve(i);
}
}
printf("%lld",ANS);
}
Compilation message (stderr)
islands.cpp: In function 'int main()':
islands.cpp:89:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
89 | scanf("%d",&n);
| ~~~~~^~~~~~~~~
islands.cpp:92:14: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
92 | scanf("%d%d",&j,&_L);
| ~~~~~^~~~~~~~~~~~~~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |