# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
302357 |
2020-09-18T15:58:55 Z |
Hemimor |
Islands (IOI08_islands) |
C++14 |
|
1360 ms |
108508 KB |
#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];
void 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 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]);
}
}
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]){
f(i);
sum+=res;
}
printf("%lld\n",sum);
}
Compilation message
islands.cpp: In function 'int main()':
islands.cpp:127:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
127 | scanf("%d",&n);
| ~~~~~^~~~~~~~~
islands.cpp:130:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
130 | scanf("%d%d",&v,&w);
| ~~~~~^~~~~~~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
15 ms |
23808 KB |
Output is correct |
2 |
Correct |
16 ms |
23808 KB |
Output is correct |
3 |
Correct |
15 ms |
23808 KB |
Output is correct |
4 |
Correct |
15 ms |
23808 KB |
Output is correct |
5 |
Correct |
15 ms |
23808 KB |
Output is correct |
6 |
Correct |
15 ms |
24064 KB |
Output is correct |
7 |
Correct |
15 ms |
23808 KB |
Output is correct |
8 |
Correct |
15 ms |
23808 KB |
Output is correct |
9 |
Correct |
15 ms |
23936 KB |
Output is correct |
10 |
Correct |
16 ms |
23808 KB |
Output is correct |
11 |
Correct |
16 ms |
23808 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
16 ms |
23936 KB |
Output is correct |
2 |
Correct |
17 ms |
23936 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
21 ms |
23936 KB |
Output is correct |
2 |
Correct |
19 ms |
24064 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
24 ms |
24704 KB |
Output is correct |
2 |
Correct |
36 ms |
26240 KB |
Output is correct |
3 |
Correct |
28 ms |
25216 KB |
Output is correct |
4 |
Correct |
21 ms |
24448 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
49 ms |
27124 KB |
Output is correct |
2 |
Correct |
64 ms |
29388 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
145 ms |
36592 KB |
Output is correct |
2 |
Correct |
130 ms |
35760 KB |
Output is correct |
3 |
Correct |
145 ms |
41068 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
204 ms |
45952 KB |
Output is correct |
2 |
Correct |
253 ms |
57188 KB |
Output is correct |
3 |
Correct |
271 ms |
54724 KB |
Output is correct |
4 |
Correct |
338 ms |
67292 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
445 ms |
80016 KB |
Output is correct |
2 |
Correct |
1010 ms |
86896 KB |
Output is correct |
3 |
Correct |
388 ms |
80128 KB |
Output is correct |
4 |
Correct |
530 ms |
98236 KB |
Output is correct |
5 |
Correct |
504 ms |
98004 KB |
Output is correct |
6 |
Correct |
1354 ms |
90972 KB |
Output is correct |
7 |
Correct |
521 ms |
108508 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
494 ms |
72140 KB |
Output is correct |
2 |
Correct |
494 ms |
72036 KB |
Output is correct |
3 |
Correct |
509 ms |
91492 KB |
Output is correct |
4 |
Correct |
613 ms |
82936 KB |
Output is correct |
5 |
Correct |
487 ms |
100320 KB |
Output is correct |
6 |
Correct |
635 ms |
92596 KB |
Output is correct |
7 |
Correct |
1360 ms |
93812 KB |
Output is correct |