Submission #120377

# Submission time Handle Problem Language Result Execution time Memory
120377 2019-06-24T09:37:26 Z nvmdava Islands (IOI08_islands) C++17
40 / 100
540 ms 131072 KB
#include <bits/stdc++.h>
using namespace std;
#define N 1000001

vector<pair<int, long long> > adj[N];
bool in[N];
vector<int> s;
vector<int> cyc;
vector<long long> dp;
bool inCyc[N];
long long res;

long long dfs(int v, int p){
	long long b1 = 0, b2 = 0;
	for(auto xx : adj[v]){
		int x = xx.first;
		long long c = xx.second;
		
		if(inCyc[x] || p == x) continue;
		auto q = dfs(x, v);
		
		long long up;
		up = q + c;
		if(b1 < up){
			b2 = b1;
			b1 = up;
		} else b2 = max(b2, up);
	}
	res = max(res, b1 + b2);
	return b1;
}

long long ans = 0;
unordered_map<int, unordered_map<int, long long> > lol; 
vector<long long> p;
void solve(){
	dp.clear();
	p.clear();
	cyc.clear();
	res = 0;
	for(int x : s){
		if(inCyc[x]) {	
			p.push_back(p.empty() ? 0 : p.back() + lol[x][cyc.back()]);
			cyc.push_back(x);
			dp.push_back(dfs(x, 0));
		}
	}
	long long full = p.back() + lol[cyc[0]][cyc.back()];
	long long tmpp = dp[0] + p[0];
	long long tmpm = dp[0] - p[0];
	for(int i = 1; i < cyc.size(); i++){
		res = max(res, tmpm + dp[i] + p[i]);
		res = max(res, tmpp + full + dp[i] - p[i]);
		tmpm = max(tmpm, dp[i] - p[i]);
		tmpp = max(tmpp, dp[i] + p[i]);
	}
	
	ans += res;
}

int trav(int i, int p){
	s.push_back(i);
	in[i] = 1;
	int res = 0;
	bool ok = 0;
	for(auto xx : adj[i]){
		int x = xx.first;
		if(p == x && ok == 0){
			ok = 1;	
			continue;
		}
		if(in[x]){
			res = x;
			continue;
		}
		int t = trav(x, i);
		if(res < t)res = t;
	}
	if(res) inCyc[i] = 1;
	if(res == i) return 0;
	return res;
}

int main(){
	ios_base::sync_with_stdio(0);
	cin.tie(0);
	cout.tie(0);
	int n;
	cin>>n;
	
	for(int i = 1; i <= n; i++){
		int e;
		long long l;
		cin>>e>>l;
		adj[e].push_back({i, l});
		adj[i].push_back({e, l});
		lol[e][i] = max(lol[e][i], l);
		lol[i][e] = max(lol[i][e], l);
	}
	
	for(int i = 1; i <= n; i++){
		if(in[i]) continue;
		s.clear();		
		trav(i, 0);
		solve();
	}
	
	cout<<ans;
}

Compilation message

islands.cpp: In function 'void solve()':
islands.cpp:51:19: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  for(int i = 1; i < cyc.size(); i++){
                 ~~^~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Correct 23 ms 23808 KB Output is correct
2 Incorrect 21 ms 23936 KB Output isn't correct
3 Correct 21 ms 23936 KB Output is correct
4 Correct 21 ms 23808 KB Output is correct
5 Correct 20 ms 23808 KB Output is correct
6 Correct 22 ms 23936 KB Output is correct
7 Correct 21 ms 23808 KB Output is correct
8 Incorrect 21 ms 23808 KB Output isn't correct
9 Correct 24 ms 23936 KB Output is correct
10 Correct 22 ms 23808 KB Output is correct
11 Correct 22 ms 23936 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 22 ms 24192 KB Output is correct
2 Correct 23 ms 24192 KB Output is correct
# Verdict Execution time Memory Grader output
1 Incorrect 24 ms 24276 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 44 ms 27768 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 111 ms 38536 KB Output is correct
2 Correct 146 ms 50104 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 333 ms 75360 KB Output is correct
2 Correct 369 ms 86536 KB Output is correct
3 Incorrect 430 ms 103324 KB Output isn't correct
# Verdict Execution time Memory Grader output
1 Correct 540 ms 122000 KB Output is correct
2 Runtime error 425 ms 131072 KB Execution killed with signal 9 (could be triggered by violating memory limits)
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 538 ms 131072 KB Execution killed with signal 9 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 426 ms 131072 KB Execution killed with signal 9 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -