結果

問題 No.1769 Don't Stop the Game
ユーザー polylogKpolylogK
提出日時 2021-10-29 04:28:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 924 bytes
コンパイル時間 6,654 ms
コンパイル使用メモリ 246,972 KB
実行使用メモリ 41,604 KB
最終ジャッジ日時 2024-06-29 17:52:42
合計ジャッジ時間 11,085 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "testlib.h"
#include <numeric>
#include <cassert>

int main(int argc, char* argv[]) {
	registerValidation(argc, argv);

	int n = inf.readInt(2, 200'000); inf.readEoln();
	std::vector<int> a(n - 1), b(n - 1), c(n - 1);
	for(size_t i = 0; i + 1 < n; i++) {
		a[i] = inf.readInt(1, n - 1); inf.readSpace();
		b[i] = inf.readInt(a[i] + 1, n); inf.readSpace();
		c[i] = inf.readInt(0, (1 << 30) - 1); inf.readEoln();
	}
	inf.readEof();

	{ // check is_tree
		std::vector<std::vector<int>> g(n);
		for(size_t i = 0; i + 1 < n; i++) {
			g[--a[i]].push_back(i);
			g[--b[i]].push_back(i);
		}

		std::vector<int> used(n);
		auto dfs = [&](auto&& dfs, int v, int par) -> void {
			if(used[v]) return; used[v] = 1;

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

				dfs(dfs, to, v);
			}
		}; dfs(dfs, 0, -1);

		assert(std::accumulate(begin(used), end(used), 0) == n);
	}
	return 0;
}
0