//#pragma GCC optimize("Ofast,unroll-loops")
#include <bits/stdc++.h>
using namespace std;
typedef long long llo;
#define mp make_pair
#define pb push_back
#define a first
#define b second
#define endl '\n'
llo n;
vector<pair<int,int>> adj[1000001];
int par[1000001];
int find(int no){
if(par[no]==no){
return no;
}
par[no]=find(par[no]);
return par[no];
}
llo dp[1000001][2];
pair<int,int> cur;
vector<pair<int,int>> pp;
vector<pair<int,int>> xx;
bool vis[1000001];
//vector<int> tt;
void dfs(int no,int par2=-1){
if(no==cur.b){
pp=xx;
}
//tt.pb(no);
for(auto j:adj[no]){
if(j.a!=par2){
xx.pb({j.a,j.b});
dfs(j.a,no);
xx.pop_back();
}
}
}
llo maa=0;
void dfs2(llo no,llo par2=-1){
dp[no][0]=0;
dp[no][1]=0;
llo ma=0;
llo ma2=0;
for(auto j:adj[no]){
if(vis[j.a]){
continue;
}
if(j.a!=par2){
dfs2(j.a,no);
if(dp[j.a][0]+j.b>=ma){
ma2=ma;
ma=dp[j.a][0]+j.b;
}
else if(dp[j.a][0]+j.b>=ma2){
ma2=dp[j.a][0]+j.b;
}
}
}
dp[no][1]=ma+ma2;
dp[no][0]=ma;
maa=max(maa,dp[no][1]);
}
int main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cin>>n;
for(llo i=0;i<n;i++){
par[i]=i;
}
vector<pair<pair<int,int>,llo>> ed;
for(llo i=0;i<n;i++){
llo aa,cc;
cin>>aa>>cc;
aa--;
llo x=find(i);
llo y=find(aa);
if(x!=y){
par[x]=y;
adj[i].pb({aa,cc});
adj[aa].pb({i,cc});
}
else{
ed.pb({{i,aa},cc});
}
}
llo ans=0;
for(auto j:ed){
cur=j.a;
llo cost=0;
//tt.clear();
dfs(j.a.a);
pp.pb({cur.a,j.b});
for(auto i:pp){
vis[i.a]=1;
}
maa=0;
for(auto i:pp){
dfs2(i.a);
}
cost=max(cost,maa);
llo xx=pp.size();
multiset<llo> zz;
for(int i=0;i<xx;i++){
pp.pb(pp[i]);
}
llo su2=0;
llo su3=0;
for(llo i=0;i<pp.size();i++){
if(i>=xx){
su3+=pp[i-xx].b;
auto jj=zz.find(dp[pp[i-xx].a][0]-su3);
zz.erase(jj);
}
su2+=pp[i].b;
if(zz.size()){
auto jj=zz.end();
jj--;
cost=max(cost,dp[pp[i].a][0]+su2+(*jj));
}
if(i<xx){
zz.insert(dp[pp[i].a][0]-su2);
}
}
ans+=cost;
}
cout<<ans<<endl;
return 0;
}
Compilation message
islands.cpp: In function 'int main()':
islands.cpp:121:16: warning: comparison of integer expressions of different signedness: 'llo' {aka 'long long int'} and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
121 | for(llo i=0;i<pp.size();i++){
| ~^~~~~~~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
16 ms |
23788 KB |
Output is correct |
2 |
Correct |
15 ms |
23916 KB |
Output is correct |
3 |
Correct |
16 ms |
23916 KB |
Output is correct |
4 |
Correct |
15 ms |
23788 KB |
Output is correct |
5 |
Correct |
17 ms |
23788 KB |
Output is correct |
6 |
Correct |
18 ms |
23788 KB |
Output is correct |
7 |
Correct |
18 ms |
23788 KB |
Output is correct |
8 |
Correct |
16 ms |
23788 KB |
Output is correct |
9 |
Correct |
15 ms |
23788 KB |
Output is correct |
10 |
Correct |
15 ms |
23788 KB |
Output is correct |
11 |
Correct |
16 ms |
23916 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
16 ms |
23916 KB |
Output is correct |
2 |
Correct |
16 ms |
23916 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
17 ms |
23916 KB |
Output is correct |
2 |
Correct |
19 ms |
24428 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
23 ms |
25068 KB |
Output is correct |
2 |
Correct |
38 ms |
28160 KB |
Output is correct |
3 |
Correct |
26 ms |
25068 KB |
Output is correct |
4 |
Correct |
21 ms |
24428 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
45 ms |
29712 KB |
Output is correct |
2 |
Correct |
61 ms |
32212 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
101 ms |
38340 KB |
Output is correct |
2 |
Correct |
131 ms |
47096 KB |
Output is correct |
3 |
Correct |
168 ms |
60712 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
176 ms |
48632 KB |
Output is correct |
2 |
Correct |
266 ms |
82844 KB |
Output is correct |
3 |
Correct |
364 ms |
93684 KB |
Output is correct |
4 |
Correct |
398 ms |
118676 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
347 ms |
82504 KB |
Output is correct |
2 |
Runtime error |
801 ms |
131076 KB |
Execution killed with signal 9 |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
390 ms |
131076 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |