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>
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
const int MAXN = 1e6;
int N;
vector<pll> adj[MAXN+10];
pll to[MAXN+10];
ll ans;
bool vis[MAXN+10], chk[MAXN+10];
ll dfs(int now, ll dep, ll &tt)
{
vis[now]=true;
ll ret=dep;
pll t(0, 0);
for(auto nxt : adj[now])
{
if(vis[nxt.first]) continue;
ret=max(ret, dfs(nxt.first, dep+nxt.second, tt));
if(dep+nxt.second>t.first) t.second=t.first, t.first=dep+nxt.second;
else if(dep+nxt.second>t.second) t.second=dep+nxt.second;
}
tt=max(tt, t.first+t.second);
return ret;
}
int main()
{
int i, j;
scanf("%d", &N);
for(i=1; i<=N; i++)
{
int u=i, v, w;
scanf("%d%d", &v, &w);
to[u]={v, w};
adj[v].push_back({u, w});
}
for(i=1; i<=N; i++)
{
if(vis[i]) continue;
int now=i;
vector<int> cyc;
while(!chk[now])
{
cyc.push_back(now);
chk[now]=1;
now=to[now].first;
}
reverse(cyc.begin(), cyc.end());
while(!cyc.empty() && cyc.back()!=now) cyc.pop_back();
reverse(cyc.begin(), cyc.end());
vector<ll> A, D;
ll val=0, s=0;
D.push_back(0);
for(auto it : cyc) vis[it]=1;
for(auto it : cyc) A.push_back(dfs(it, 0, val));
for(auto it : cyc) D.push_back(D.back()+to[it].second), s+=to[it].second;
D.pop_back();
ll t=-1e18;
for(j=0; j<cyc.size(); j++)
{
if(j) val=max(val, D[j]+A[j]+t);
t=max(t, A[j]-D[j]);
}
t=-1e18;
for(j=0; j<cyc.size(); j++)
{
if(j) val=max(val, s-D[j]+A[j]+t);
t=max(t, D[j]+A[j]);
}
ans+=val;
}
printf("%lld", ans);
}
Compilation message (stderr)
islands.cpp: In function 'int main()':
islands.cpp:75:13: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(j=0; j<cyc.size(); j++)
~^~~~~~~~~~~
islands.cpp:82:13: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(j=0; j<cyc.size(); j++)
~^~~~~~~~~~~
islands.cpp:39:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d", &N);
~~~~~^~~~~~~~~~
islands.cpp:43:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d%d", &v, &w);
~~~~~^~~~~~~~~~~~~~~~
# | 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... |