Submission #302344

# Submission time Handle Problem Language Result Execution time Memory
302344 2020-09-18T15:54:01 Z Hemimor Islands (IOI08_islands) C++14
12 / 100
783 ms 131076 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=4000;
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]+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 len=0;
	for(auto i:a) if(deg[i]){
		v=i;
		len++;
		ll X=0,Y=0;
		for(auto p:g[v]){
			int u=p.first;
			if(!deg[u]){
				ll t=d[u]+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,pre=-1,pw=-1;
	ll t=0;
	do{
		b.push_back(now);
		c[now]=t;
		vp tmp;
		for(auto p:g[now]){
			int u=p.first;
			tmp.push_back(p);
			if(u!=pre){
				pre=now;
				pw=p.second;
				now=u;
				t+=p.second;
				break;
			}
		}
		if(len==2&&b.size()==2){
			if(tmp[0].second==pw) swap(tmp[0],tmp[1]);
			now=v;
			t+=tmp[0].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);
	assert(n<=4000);
	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:140:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  140 |  scanf("%d",&n);
      |  ~~~~~^~~~~~~~~
islands.cpp:144:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  144 |   scanf("%d%d",&v,&w);
      |   ~~~~~^~~~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Correct 1 ms 416 KB Output is correct
2 Runtime error 761 ms 131076 KB Execution killed with signal 9
3 Correct 1 ms 384 KB Output is correct
4 Incorrect 1 ms 416 KB Output isn't correct
5 Correct 1 ms 544 KB Output is correct
6 Incorrect 1 ms 384 KB Output isn't correct
7 Runtime error 783 ms 131076 KB Execution killed with signal 9
8 Runtime error 739 ms 131076 KB Execution killed with signal 9
9 Incorrect 1 ms 384 KB Output isn't correct
10 Incorrect 1 ms 384 KB Output isn't correct
11 Correct 1 ms 512 KB Output is correct
# Verdict Execution time Memory Grader output
1 Runtime error 767 ms 131076 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 759 ms 131072 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 640 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 744 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 672 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 640 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 640 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 640 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -