#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)
{
vis[now]=true;
ll ret=dep;
for(auto nxt : adj[now])
{
if(vis[nxt.first]) continue;
ret=max(ret, dfs(nxt.first, dep+nxt.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());
//for(auto it : cyc) printf("%d ", it); printf("\n");
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));
for(auto it : cyc) D.push_back(D.back()+to[it].second), s+=to[it].second;
D.pop_back();
for(auto it : A) val=max(val, it);
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
islands.cpp: In function 'int main()':
islands.cpp:73:13: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(j=0; j<cyc.size(); j++)
~^~~~~~~~~~~
islands.cpp:80:13: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(j=0; j<cyc.size(); j++)
~^~~~~~~~~~~
islands.cpp:33:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d", &N);
~~~~~^~~~~~~~~~
islands.cpp:37: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 |
1 |
Correct |
20 ms |
23800 KB |
Output is correct |
2 |
Incorrect |
20 ms |
23800 KB |
Output isn't correct |
3 |
Correct |
19 ms |
23800 KB |
Output is correct |
4 |
Correct |
19 ms |
23800 KB |
Output is correct |
5 |
Correct |
20 ms |
23804 KB |
Output is correct |
6 |
Correct |
19 ms |
23764 KB |
Output is correct |
7 |
Correct |
19 ms |
23800 KB |
Output is correct |
8 |
Correct |
19 ms |
23800 KB |
Output is correct |
9 |
Correct |
20 ms |
23800 KB |
Output is correct |
10 |
Incorrect |
19 ms |
23800 KB |
Output isn't correct |
11 |
Correct |
21 ms |
23800 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
20 ms |
23928 KB |
Output is correct |
2 |
Correct |
21 ms |
23928 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
24 ms |
23928 KB |
Output is correct |
2 |
Correct |
22 ms |
24056 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
27 ms |
24568 KB |
Output is correct |
2 |
Correct |
37 ms |
25848 KB |
Output is correct |
3 |
Correct |
39 ms |
24700 KB |
Output is correct |
4 |
Incorrect |
25 ms |
24312 KB |
Output isn't correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
45 ms |
26612 KB |
Output is correct |
2 |
Correct |
58 ms |
28728 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
107 ms |
33268 KB |
Output is correct |
2 |
Correct |
107 ms |
37364 KB |
Output is correct |
3 |
Correct |
134 ms |
39332 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
182 ms |
42028 KB |
Output is correct |
2 |
Correct |
216 ms |
50412 KB |
Output is correct |
3 |
Correct |
227 ms |
60104 KB |
Output is correct |
4 |
Correct |
301 ms |
61924 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
353 ms |
56412 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
483 ms |
131072 KB |
Output is correct |
2 |
Incorrect |
468 ms |
111096 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |