#include <bits/stdc++.h>
#define jizz ios::sync_with_stdio(0),cin.tie(0),cout.tie(0);
#define pb push_back
#define ET cout << "\n"
#define MEM(i,j) memset(i,j,sizeof i)
#define F first
#define S second
#define MP make_pair
#define ALL(v) v.begin(),v.end()
#define DB(a,s,e) {for(int i=s;i<e;++i) cout << a[i] << " ";ET;}
using namespace std;
typedef long long ll;
typedef pair<int,int> pii;
typedef pair<ll,ll> pll;
struct mode
{
int F,S,num;
};
vector<mode> G[1000005];
vector<pll> cir;
deque<int> dq;
bitset<1000005> yc,vis;
ll M;
const ll INF=1e18;
bool dfs(int u,int f)
{
int flag=0;
vis[u]=1;
for(auto i:G[u])
if(i.num!=f)
if(!vis[i.F])
if(dfs(i.F,i.num))
flag=1,cir.back().S=i.S;
else;
else if(!yc[u])
flag=1,yc[i.F]=1,cir.pb(MP(i.F,i.S));
if(flag)
if(yc[u]) flag=0;
else cir.pb(MP(u,0)),yc[u]=1;
return flag;
}
ll dfs2(int u)
{
ll mx=0,sx=0;
yc[u]=1;
for(auto i:G[u])
if(!yc[i.F])
{
ll d=dfs2(i.F)+i.S;
if(d>mx) sx=mx,mx=d;
else if(d>sx) sx=d;
}
M=max(M,sx+mx);
vector<mode>().swap(G[u]);
return mx;
}
int main()
{jizz
int n,a,w;
ll ans=0,sum;
cin >> n;
for(int i=1;i<=n;++i)
{
cin >> a >> w;
G[i].pb(mode{a,w,i});
if(a!=i) G[a].pb(mode{i,w,i});
}
for(int i=1;i<=n;++i)
if(!vis[i])
{
vector<pll>().swap(cir),M=0,dfs(i,-1);
deque<int>().swap(dq);
for(int j=0;j<cir.size();++j)
cir[j].F=dfs2(cir[j].F);
if(cir.size()>1)
{
int n=cir.size();
sum=0,dq.pb(0);
for(int j=0;j<n;++j)
cir.pb(cir[j]);
for(int j=1;j<cir.size();++j)
{
while(dq.size()&&j-dq[0]>=n) dq.pop_front();
sum+=cir[j-1].S,M=max(M,sum+cir[j].F+cir[dq[0]].F);
cir[j].F-=sum;
while(dq.size()&&cir[j].F>=cir[dq.back()].F)
dq.pop_back();
dq.pb(j);
}
}
ans+=M;
}
cout << ans << "\n";
}
Compilation message
islands.cpp: In function 'bool dfs(int, int)':
islands.cpp:33:5: warning: suggest explicit braces to avoid ambiguous 'else' [-Wdangling-else]
if(i.num!=f)
^
islands.cpp:40:4: warning: suggest explicit braces to avoid ambiguous 'else' [-Wdangling-else]
if(flag)
^
islands.cpp: In function 'int main()':
islands.cpp:78:17: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int j=0;j<cir.size();++j)
~^~~~~~~~~~~
islands.cpp:86:18: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int j=1;j<cir.size();++j)
~^~~~~~~~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
22 ms |
23780 KB |
Output is correct |
2 |
Correct |
23 ms |
23780 KB |
Output is correct |
3 |
Correct |
21 ms |
23936 KB |
Output is correct |
4 |
Correct |
22 ms |
23784 KB |
Output is correct |
5 |
Correct |
21 ms |
23808 KB |
Output is correct |
6 |
Correct |
21 ms |
23808 KB |
Output is correct |
7 |
Correct |
21 ms |
23780 KB |
Output is correct |
8 |
Correct |
23 ms |
23936 KB |
Output is correct |
9 |
Correct |
21 ms |
23816 KB |
Output is correct |
10 |
Correct |
24 ms |
23884 KB |
Output is correct |
11 |
Correct |
22 ms |
23836 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
22 ms |
23936 KB |
Output is correct |
2 |
Correct |
23 ms |
23796 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
23 ms |
23936 KB |
Output is correct |
2 |
Correct |
25 ms |
24312 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
33 ms |
24872 KB |
Output is correct |
2 |
Correct |
44 ms |
27512 KB |
Output is correct |
3 |
Correct |
34 ms |
24696 KB |
Output is correct |
4 |
Correct |
28 ms |
24260 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
53 ms |
28868 KB |
Output is correct |
2 |
Correct |
63 ms |
30552 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
117 ms |
35068 KB |
Output is correct |
2 |
Correct |
128 ms |
43344 KB |
Output is correct |
3 |
Correct |
216 ms |
55576 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
180 ms |
42020 KB |
Output is correct |
2 |
Correct |
267 ms |
72248 KB |
Output is correct |
3 |
Correct |
282 ms |
79336 KB |
Output is correct |
4 |
Correct |
341 ms |
102736 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
333 ms |
67176 KB |
Output is correct |
2 |
Correct |
1294 ms |
131072 KB |
Output is correct |
3 |
Correct |
334 ms |
59492 KB |
Output is correct |
4 |
Correct |
478 ms |
108228 KB |
Output is correct |
5 |
Correct |
487 ms |
109912 KB |
Output is correct |
6 |
Correct |
1676 ms |
64072 KB |
Output is correct |
7 |
Runtime error |
431 ms |
131072 KB |
Execution killed with signal 9 (could be triggered by violating memory limits) |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
421 ms |
131072 KB |
Execution killed with signal 9 (could be triggered by violating memory limits) |
2 |
Halted |
0 ms |
0 KB |
- |