#include <algorithm>
#include <iostream>
#include <iomanip>
#include <numeric>
#include <cassert>
#include <vector>
#include <cmath>
#include <queue>
#include <set>
#include <map>
#define syosu(x) fixed<<setprecision(x)
using namespace std;
typedef long long ll;
typedef unsigned int uint;
typedef unsigned long long ull;
typedef pair<int,int> P;
typedef pair<double,double> pdd;
typedef pair<ll,ll> pll;
typedef vector<int> vi;
typedef vector<vi> vvi;
typedef vector<double> vd;
typedef vector<vd> vvd;
typedef vector<ll> vl;
typedef vector<vl> vvl;
typedef vector<string> vs;
typedef vector<P> vp;
typedef vector<vp> vvp;
typedef vector<pll> vpll;
typedef pair<int,P> pip;
typedef vector<pip> vip;
const int inf=1<<30;
const ll INF=1ll<<60;
const double pi=acos(-1);
const double eps=1e-8;
const ll mod=1e9+7;
const int dx[4]={-1,0,1,0},dy[4]={0,-1,0,1};
const int M=1000000;
int n,deg[M];
bool vis[M];
vp g[M];
ll res,c[M],d[M];
ll f(int v){
res=0;
vi a,b;
vis[v]=1;
queue<int> q;
q.push(v);
while(!q.empty()){
v=q.front();q.pop();
a.push_back(v);
for(auto p:g[v]){
int u=p.first;
if(!vis[u]){
vis[u]=1;
q.push(u);
}
}
}
for(auto i:a) if(deg[i]==1) q.push(i);
while(!q.empty()){
v=q.front();q.pop();
deg[v]--;
ll X=0,Y=0;
for(auto p:g[v]){
int u=p.first;
if(deg[u]){
deg[u]--;
if(deg[u]==1) q.push(u);
}
else{
ll t=d[u]+abs(p.second);
d[v]=max(d[v],t);
if(t>X){
Y=X;
X=t;
}
else if(t>Y) Y=t;
}
}
res=max(res,X+Y);
}
for(auto i:a) if(deg[i]){
v=i;
ll X=0,Y=0;
for(auto p:g[v]){
int u=p.first;
if(!deg[u]){
ll t=d[u]+abs(p.second);
d[v]=max(d[v],t);
if(t>X){
Y=X;
X=t;
}
else if(t>Y) Y=t;
}
}
res=max(res,X+Y);
}
int now=v;
ll t=0;
do{
b.push_back(now);
c[now]=t;
for(auto p:g[now]){
int u=p.first;
if(p.second>0){
now=u;
t+=p.second;
}
}
}while(now!=v);
ll res=0,mx=-INF;
for(auto i:b){
res=max(res,c[i]+d[i]+mx);
mx=max(mx,-c[i]+d[i]);
}
mx=-INF;
for(auto i:b){
res=max(res,t-c[i]+d[i]+mx);
mx=max(mx,c[i]+d[i]);
}
return res;
}
int main(){
scanf("%d",&n);
for(int u=0;u<n;u++){
int v,w;
scanf("%d%d",&v,&w);
v--;
g[u].push_back({v,w});
g[v].push_back({u,-w});
deg[u]++,deg[v]++;
}
ll sum=0;
for(int i=0;i<n;i++) if(!vis[i]) sum+=f(i);
printf("%lld\n",sum);
}
Compilation message
islands.cpp: In function 'int main()':
islands.cpp:128:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
128 | scanf("%d",&n);
| ~~~~~^~~~~~~~~
islands.cpp:131:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
131 | scanf("%d%d",&v,&w);
| ~~~~~^~~~~~~~~~~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
15 ms |
23808 KB |
Output is correct |
2 |
Incorrect |
16 ms |
23808 KB |
Output isn't correct |
3 |
Correct |
15 ms |
23808 KB |
Output is correct |
4 |
Correct |
14 ms |
23808 KB |
Output is correct |
5 |
Correct |
14 ms |
23808 KB |
Output is correct |
6 |
Correct |
17 ms |
23824 KB |
Output is correct |
7 |
Correct |
15 ms |
23808 KB |
Output is correct |
8 |
Correct |
15 ms |
23840 KB |
Output is correct |
9 |
Correct |
14 ms |
23808 KB |
Output is correct |
10 |
Incorrect |
15 ms |
23936 KB |
Output isn't correct |
11 |
Correct |
16 ms |
23808 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
18 ms |
24064 KB |
Output is correct |
2 |
Correct |
16 ms |
23936 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
16 ms |
23936 KB |
Output is correct |
2 |
Correct |
18 ms |
24064 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
26 ms |
24704 KB |
Output is correct |
2 |
Correct |
38 ms |
26240 KB |
Output is correct |
3 |
Correct |
32 ms |
25216 KB |
Output is correct |
4 |
Incorrect |
22 ms |
24448 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
50 ms |
27124 KB |
Output is correct |
2 |
Correct |
61 ms |
29476 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
135 ms |
36460 KB |
Output is correct |
2 |
Correct |
126 ms |
35628 KB |
Output is correct |
3 |
Correct |
148 ms |
44780 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
200 ms |
45848 KB |
Output is correct |
2 |
Correct |
255 ms |
62948 KB |
Output is correct |
3 |
Correct |
277 ms |
60264 KB |
Output is correct |
4 |
Correct |
342 ms |
76772 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
447 ms |
80068 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
507 ms |
71908 KB |
Output is correct |
2 |
Incorrect |
499 ms |
87520 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |