답안 #151524

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

using namespace std;

typedef long long ll;
typedef pair<int, int> pii;

const int maxn = 1e6+10;
const ll inf = 1e18+10;

int n;

int peso[maxn];

int firstCycle, lastCycle, backEdge;
int pai[maxn], indCycle[maxn], edgePai[maxn];

ll dist[maxn], max1[maxn], max2[maxn];
ll maiorDist[maxn], maiorDist2;
int indDist;

bool mark[maxn], markCycle[maxn];

vector<pii> grafo[maxn];

void findCycle(int u, int p)
{
	mark[u] = 1;

	for (auto pp: grafo[u])
	{
		int v = pp.first, e = pp.second;
		if (e == p) continue;

		if (mark[v])
		{
			firstCycle = u, lastCycle = v;
			backEdge = peso[e];
			continue;
		}

		pai[v] = u, edgePai[v] = peso[e];
		findCycle(v, e);
	}
}

void dfs(int u, int p, int root)
{
	if (dist[u] >= maiorDist[root])
		indDist = u;

	maiorDist[root] = max(maiorDist[root], dist[u]);

	for (auto pp: grafo[u])
	{
		int v = pp.first, e = pp.second;
		if (v == p || markCycle[v]) continue;

		dist[v] = dist[u]+1ll*peso[e];
		dfs(v, u, root);
	}
}

void dfs2(int u, int p)
{
	maiorDist2 = max(maiorDist2, dist[u]);

	for (auto pp: grafo[u])
	{
		int v = pp.first, e = pp.second;
		if (v == p || markCycle[v]) continue;

		dist[v] = dist[u]+1ll*peso[e];
		dfs2(v, u);
	}
}

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;

	for (int T = 1; T <= n; T++)
	{
		if (mark[T]) continue;

		findCycle(T, 0);

		int at = lastCycle;
		ll soma = backEdge;

		vector<int> ciclo;

		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 (auto c: ciclo)
		{
			dfs(c, 0, c);

			dist[indDist] = maiorDist2 = 0;
			markCycle[c] = 0;

			dfs2(indDist, 0);
			markCycle[c] = 1;

			diam = max(diam, maiorDist2);
		}


		max1[ciclo.back()] = max2[ciclo.back()] = -inf;
		for (int i = ciclo.size()-2; i >= 0; i--)
		{
			int u = ciclo[i], v = ciclo[i+1];

			max1[u] = max(maiorDist[v], max1[v]) + 1ll*edgePai[v];

			max2[u] = max(soma-1ll*edgePai[v]+maiorDist[v], max2[v]-1ll*edgePai[v]);

			M = max(max1[u], max2[u]) + maiorDist[u];
		}

		ans += max(M, diam);
	}

	printf("%lld\n", ans);
}

Compilation message

islands.cpp: In function 'int main()':
islands.cpp:80:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d", &n);
  ~~~~~^~~~~~~~~~
islands.cpp:85: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 23800 KB Output is correct
2 Correct 24 ms 23928 KB Output is correct
3 Incorrect 24 ms 23928 KB Output isn't correct
4 Correct 24 ms 23800 KB Output is correct
5 Correct 23 ms 23800 KB Output is correct
6 Correct 24 ms 23912 KB Output is correct
7 Incorrect 23 ms 23800 KB Output isn't correct
8 Incorrect 23 ms 23928 KB Output isn't correct
9 Incorrect 23 ms 23800 KB Output isn't correct
10 Correct 24 ms 23800 KB Output is correct
11 Correct 23 ms 23928 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 24 ms 23928 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 25 ms 24060 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 34 ms 25276 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 56 ms 29116 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 137 ms 41336 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 224 ms 57008 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 435 ms 83728 KB Output is correct
2 Incorrect 1000 ms 131072 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 567 ms 131076 KB Execution killed with signal 9 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -