답안 #151547

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
151547 2019-09-03T14:12:27 Z luciocf Islands (IOI08_islands) C++14
90 / 100
1459 ms 131076 KB
#include <bits/stdc++.h>

#define ff first
#define ss second
 
using namespace std;
 
typedef long long ll;
typedef pair<int, int> pii;
 
const int maxn = 1e6+1;
const ll inf = 1e18+10;
 
int n;
 
int peso[maxn];
 
int firstCycle, lastCycle, backEdge;
int pai[maxn], edgePai[maxn];
 
ll pref[maxn];
ll maiorDist[maxn], maiorDist2;
int indDist;
 
bitset<maxn> mark, markCycle;
 
vector<pii> grafo[maxn];
 
void findCycle(int u, int p)
{
	mark[u] = 1;
 
	for (auto v: grafo[u])
	{
		if (v.ss == p) continue;
 
		if (mark[v.ff])
		{
			firstCycle = u, lastCycle = v.ff;
			backEdge = peso[v.ss];
			continue;
		}
 
		pai[v.ff] = u, edgePai[v.ff] = peso[v.ss];
		findCycle(v.ff, v.ss);
	}
}
 
void dfs(int u, int p, int root, ll dist)
{
	if (dist >= maiorDist[root])
		indDist = u;
 
	maiorDist[root] = max(maiorDist[root], dist);
 
	for (auto v: grafo[u])
		if (v.ff != p && !markCycle[v.ff])
 			dfs(v.ff, u, root, dist+1ll*peso[v.ss]);
}
 
void dfs2(int u, int p, ll dist)
{
	maiorDist2 = max(maiorDist2, dist);
 
	for (auto v: grafo[u])
		if (v.ff != p && !markCycle[v.ff])
 			dfs2(v.ff, u, dist+1ll*peso[v.ss]);
}
 
int main(void)
{
	scanf("%d", &n);
 
	for (int i = 1; i <= n; i++)
	{
		int u, w;
		scanf("%d %d", &u, &w);
 
		peso[i] = w;
 
		grafo[u].push_back({i, i});
		grafo[i].push_back({u, i});
	}
 
	ll ans = 0;
	vector<int> ciclo;
 
	for (int T = 1; T <= n; T++)
	{
		if (mark[T]) continue;
 
		findCycle(T, 0);
 
		int at = lastCycle;
		ll soma = backEdge;
 
		ciclo.clear();
 
		while (true)
		{
			ciclo.push_back(at);
			markCycle[at] = 1;
 
			if (at == firstCycle) break;
 
			soma += 1ll*edgePai[at];
			at = pai[at];
		}
 
		reverse(ciclo.begin(), ciclo.end());
 
		ll M = 0, diam = 0;
 
		for (int i = 0; i < ciclo.size(); i++)
		{
			int c = ciclo[i];
 
			if (i > 0)
				pref[i] = pref[i-1] + 1ll*edgePai[c];
 
			dfs(c, 0, c, 0);
 
			maiorDist2 = 0;
			markCycle[c] = 0;
 
			dfs2(indDist, 0, 0);
			markCycle[c] = 1;
 
			diam = max(diam, maiorDist2);
		}
 
		ll maxi1 = -inf, maxi2 = -inf;
		for (int i = 0; i < ciclo.size(); i++)
		{
			int u = ciclo[i];
 
			M = max(M, maiorDist[u]+pref[i] + maxi1);
			maxi1 = max(maxi1, maiorDist[u]-pref[i]);
 
			M = max(M, maiorDist[u]-pref[i] + maxi2 + soma);
 
			maxi2 = max(maxi2, maiorDist[u]+pref[i]);
		}
 
		ans += max(M, diam);
	}
 
	printf("%lld\n", ans);
}

Compilation message

islands.cpp: In function 'int main()':
islands.cpp:114:21: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   for (int i = 0; i < ciclo.size(); i++)
                   ~~^~~~~~~~~~~~~~
islands.cpp:133:21: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   for (int i = 0; i < ciclo.size(); i++)
                   ~~^~~~~~~~~~~~~~
islands.cpp:72:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d", &n);
  ~~~~~^~~~~~~~~~
islands.cpp:77:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   scanf("%d %d", &u, &w);
   ~~~~~^~~~~~~~~~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Correct 23 ms 23860 KB Output is correct
2 Correct 23 ms 23928 KB Output is correct
3 Correct 23 ms 23928 KB Output is correct
4 Correct 22 ms 23800 KB Output is correct
5 Correct 23 ms 23900 KB Output is correct
6 Correct 23 ms 23800 KB Output is correct
7 Correct 23 ms 23800 KB Output is correct
8 Correct 23 ms 23928 KB Output is correct
9 Correct 23 ms 23828 KB Output is correct
10 Correct 23 ms 23928 KB Output is correct
11 Correct 23 ms 23800 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 24 ms 23928 KB Output is correct
2 Correct 25 ms 23928 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 24 ms 23928 KB Output is correct
2 Correct 25 ms 24184 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 33 ms 24824 KB Output is correct
2 Correct 46 ms 26836 KB Output is correct
3 Correct 38 ms 25052 KB Output is correct
4 Correct 32 ms 24472 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 58 ms 28012 KB Output is correct
2 Correct 70 ms 30620 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 131 ms 36436 KB Output is correct
2 Correct 128 ms 39704 KB Output is correct
3 Correct 166 ms 47112 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 210 ms 46948 KB Output is correct
2 Correct 263 ms 64620 KB Output is correct
3 Correct 289 ms 69456 KB Output is correct
4 Correct 359 ms 83172 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 419 ms 74876 KB Output is correct
2 Correct 967 ms 106828 KB Output is correct
3 Correct 418 ms 70112 KB Output is correct
4 Correct 558 ms 98748 KB Output is correct
5 Correct 506 ms 99276 KB Output is correct
6 Correct 1459 ms 72668 KB Output is correct
7 Correct 544 ms 116068 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Runtime error 542 ms 131076 KB Execution killed with signal 9 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -