#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
{
ll F,S,num;
};
vector<mode> G[1000005];
vector<pll> cir;
vector<ll> len;
bitset<1000005> yc;
ll M,dft,dfn[1000005];
const ll INF=1e18;
bool dfs(ll u,ll f)
{
ll flag=0;
dfn[u]=++dft;
for(auto i:G[u])
if(i.num!=f)
if(!dfn[i.F])
if(dfs(i.F,i.num))
flag=1,len.pb(i.S);
else;
else if(dfn[i.F]<=dfn[u])
flag=1,yc[i.F]=1,cir.pb(MP(i.F,0)),len.pb(i.S);
if(flag)
if(yc[u]) flag=0;
else cir.pb(MP(u,0)),yc[u]=1;
return flag;
}
ll dfs2(ll 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);
return mx;
}
int main()
{jizz
ll n,a,w,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(!dfn[i])
{
cir.clear(),len.clear(),M=0,dfs(i,-1);
for(ll j=0;j<cir.size();++j)
cir[j].S=dfs2(cir[j].F);
if(cir.size()>1)
{
ll n=cir.size();
deque<pll> dq;
sum=0,dq.pb(MP(0,cir[0].S));
for(ll j=0;j<n;++j)
cir.pb(cir[j]),len.pb(len[j]);
for(ll j=1;j<cir.size();++j)
{
while(dq.size()&&j-dq[0].F>=n) dq.pop_front();
sum+=len[j-1],M=max(M,sum+cir[j].S+dq[0].S);
while(dq.size()&&cir[j].S-sum>=dq.back().S)
dq.pop_back();
dq.pb(MP(j,cir[j].S-sum));
}
}
ans+=M;
}
cout << ans << "\n";
}
Compilation message
islands.cpp: In function 'bool dfs(ll, ll)':
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:75:16: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(ll j=0;j<cir.size();++j)
~^~~~~~~~~~~
islands.cpp:84:17: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(ll j=1;j<cir.size();++j)
~^~~~~~~~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
28 ms |
23808 KB |
Output is correct |
2 |
Correct |
28 ms |
23928 KB |
Output is correct |
3 |
Correct |
23 ms |
23936 KB |
Output is correct |
4 |
Correct |
21 ms |
23928 KB |
Output is correct |
5 |
Correct |
22 ms |
23808 KB |
Output is correct |
6 |
Correct |
35 ms |
23808 KB |
Output is correct |
7 |
Correct |
23 ms |
23808 KB |
Output is correct |
8 |
Correct |
22 ms |
23808 KB |
Output is correct |
9 |
Correct |
22 ms |
23808 KB |
Output is correct |
10 |
Correct |
22 ms |
23808 KB |
Output is correct |
11 |
Correct |
22 ms |
23936 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
24 ms |
24056 KB |
Output is correct |
2 |
Correct |
24 ms |
23936 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
22 ms |
24064 KB |
Output is correct |
2 |
Correct |
26 ms |
24620 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
30 ms |
25592 KB |
Output is correct |
2 |
Correct |
43 ms |
29680 KB |
Output is correct |
3 |
Correct |
34 ms |
25824 KB |
Output is correct |
4 |
Correct |
27 ms |
24832 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
55 ms |
31604 KB |
Output is correct |
2 |
Correct |
68 ms |
35856 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
125 ms |
42440 KB |
Output is correct |
2 |
Correct |
167 ms |
56216 KB |
Output is correct |
3 |
Correct |
177 ms |
75672 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
197 ms |
56460 KB |
Output is correct |
2 |
Correct |
269 ms |
96864 KB |
Output is correct |
3 |
Correct |
314 ms |
116820 KB |
Output is correct |
4 |
Runtime error |
352 ms |
131072 KB |
Execution killed with signal 9 (could be triggered by violating memory limits) |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
360 ms |
102184 KB |
Output is correct |
2 |
Runtime error |
695 ms |
131072 KB |
Execution killed with signal 9 (could be triggered by violating memory limits) |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
396 ms |
131072 KB |
Execution killed with signal 9 (could be triggered by violating memory limits) |
2 |
Halted |
0 ms |
0 KB |
- |