結果

問題 No.1769 Don't Stop the Game
ユーザー polylogKpolylogK
提出日時 2021-11-03 10:17:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 598 ms / 3,000 ms
コード長 1,965 bytes
コンパイル時間 890 ms
コンパイル使用メモリ 83,572 KB
実行使用メモリ 58,540 KB
最終ジャッジ日時 2024-06-29 18:01:00
合計ジャッジ時間 10,265 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 207 ms
16,212 KB
testcase_09 AC 152 ms
13,696 KB
testcase_10 AC 308 ms
24,444 KB
testcase_11 AC 127 ms
12,656 KB
testcase_12 AC 260 ms
19,272 KB
testcase_13 AC 271 ms
19,584 KB
testcase_14 AC 280 ms
19,564 KB
testcase_15 AC 292 ms
19,588 KB
testcase_16 AC 304 ms
19,536 KB
testcase_17 AC 344 ms
22,284 KB
testcase_18 AC 497 ms
31,540 KB
testcase_19 AC 598 ms
38,976 KB
testcase_20 AC 593 ms
39,408 KB
testcase_21 AC 577 ms
39,924 KB
testcase_22 AC 590 ms
40,104 KB
testcase_23 AC 264 ms
19,592 KB
testcase_24 AC 275 ms
19,412 KB
testcase_25 AC 101 ms
20,040 KB
testcase_26 AC 348 ms
40,708 KB
testcase_27 AC 135 ms
37,968 KB
testcase_28 AC 405 ms
58,540 KB
testcase_29 AC 389 ms
49,164 KB
testcase_30 AC 423 ms
49,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/*
	# Algorithm

	各頂点 v と、その親 p について次の値を求める。
	c[v] := v の部分木にあってかつ xor[p; u] がはじめて 0 になるような u の個数

	## Time Comlexity

	O(N)
*/

#include <stdio.h>
#include <algorithm>
#include <vector>
#include <unordered_map>

int main() {
	int n; scanf("%d", &n);
	std::vector<std::vector<int>> g(n);
	std::vector<int> a(n - 1), b(n - 1), c(n - 1);
	for(int i = 0; i < n - 1; i++) {
		scanf("%d%d%d", &a[i], &b[i], &c[i]); a[i]--; b[i]--;

		g[a[i]].push_back(i);
		g[b[i]].push_back(i);
	}

	std::vector<int> x(n), size(n); {
		auto dfs = [&](auto&& dfs, int v, int par, int xor_val) -> void {
			x[v] = xor_val;
			size[v] = 1;

			for(int id: g[v]) {
				int to = v ^ a[id] ^ b[id];
				if(to == par) continue;

				dfs(dfs, to, v, xor_val ^ c[id]);
				size[v] += size[to];
			}
		}; dfs(dfs, 0, -1, 0);
	}

	using i64 = long long;

	i64 ans = 0;
	std::vector<i64> count(n);
	std::unordered_map<int, i64> count_root; {
		std::unordered_map<int, int> map;
		for(int i = 0; i < n; i++) map[x[i]] = -1;
		auto dfs = [&](auto&& dfs, int v, int par) -> void {
			if(map[x[v]] == -1) count_root[x[v]]++;
			else count[map[x[v]]]++;

			int tmp = map[x[v]];
			for(int id: g[v]) {
				int to = a[id] ^ b[id] ^ v;
				if(to == par) continue;

				map[x[v]] = to;
				dfs(dfs, to, v);

				ans += count[to] * (n - size[to]);
			}
			map[x[v]] = tmp;
		}; dfs(dfs, 0, -1);
	}
	{
		std::unordered_map<int, int> map;
		for(int i = 0; i < n; i++) map[x[i]] = -1;
		auto dfs = [&](auto&& dfs, int v, int par) -> void {
			int root = map[x[v]];

			if(root == -1) ans += (count_root[x[v]] - 1) * size[v];
			else ans += count[root] * size[v];

			int tmp = map[x[v]];
			for(int id: g[v]) {
				int to = v ^ a[id] ^ b[id];
				if(to == par) continue;

				map[x[v]] = to;
				dfs(dfs, to, v);
			}
			map[x[v]] = tmp;
		}; dfs(dfs, 0, -1);
	}

	ans = (i64)n * (n - 1) - ans;
	printf("%lld\n", ans);
}
0