#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;
ll p=dfs(nxt.first, dep+nxt.second, tt);
ret=max(ret, p);
if(p>t.first) t.second=t.first, t.first=p;
else if(p>t.second) t.second=p;
}
tt=max(tt, t.first+t.second-dep-dep);
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
islands.cpp: In function 'int main()':
islands.cpp:76:13: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(j=0; j<cyc.size(); j++)
~^~~~~~~~~~~
islands.cpp:83:13: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(j=0; j<cyc.size(); j++)
~^~~~~~~~~~~
islands.cpp:40:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d", &N);
~~~~~^~~~~~~~~~
islands.cpp:44: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 |
21 ms |
23800 KB |
Output is correct |
2 |
Correct |
19 ms |
23800 KB |
Output is correct |
3 |
Correct |
20 ms |
23800 KB |
Output is correct |
4 |
Correct |
19 ms |
23800 KB |
Output is correct |
5 |
Correct |
19 ms |
23800 KB |
Output is correct |
6 |
Correct |
20 ms |
23800 KB |
Output is correct |
7 |
Correct |
20 ms |
23800 KB |
Output is correct |
8 |
Correct |
19 ms |
23800 KB |
Output is correct |
9 |
Correct |
20 ms |
23804 KB |
Output is correct |
10 |
Correct |
20 ms |
23800 KB |
Output is correct |
11 |
Correct |
20 ms |
23800 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
20 ms |
23804 KB |
Output is correct |
2 |
Correct |
21 ms |
23928 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
21 ms |
23928 KB |
Output is correct |
2 |
Correct |
21 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 |
30 ms |
24696 KB |
Output is correct |
4 |
Correct |
25 ms |
24312 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
43 ms |
26612 KB |
Output is correct |
2 |
Correct |
58 ms |
28720 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
101 ms |
33280 KB |
Output is correct |
2 |
Correct |
107 ms |
37348 KB |
Output is correct |
3 |
Correct |
135 ms |
39352 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
173 ms |
42124 KB |
Output is correct |
2 |
Correct |
201 ms |
50408 KB |
Output is correct |
3 |
Correct |
231 ms |
60108 KB |
Output is correct |
4 |
Correct |
292 ms |
61792 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
363 ms |
56252 KB |
Output is correct |
2 |
Correct |
750 ms |
82780 KB |
Output is correct |
3 |
Correct |
328 ms |
58956 KB |
Output is correct |
4 |
Correct |
409 ms |
75612 KB |
Output is correct |
5 |
Correct |
395 ms |
75232 KB |
Output is correct |
6 |
Correct |
931 ms |
66808 KB |
Output is correct |
7 |
Correct |
446 ms |
100816 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
461 ms |
131076 KB |
Execution killed with signal 9 (could be triggered by violating memory limits) |
2 |
Halted |
0 ms |
0 KB |
- |