結果

問題 No.768 Tapris and Noel play the game on Treeone
ユーザー polylogKpolylogK
提出日時 2018-12-15 16:06:03
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 896 bytes
コンパイル時間 1,929 ms
コンパイル使用メモリ 184,252 KB
実行使用メモリ 28,360 KB
最終ジャッジ日時 2024-09-25 06:17:45
合計ジャッジ時間 5,221 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,948 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 3 ms
6,940 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 69 ms
18,156 KB
testcase_08 AC 35 ms
11,008 KB
testcase_09 AC 42 ms
12,544 KB
testcase_10 AC 32 ms
10,368 KB
testcase_11 AC 126 ms
26,424 KB
testcase_12 AC 131 ms
26,492 KB
testcase_13 AC 126 ms
25,948 KB
testcase_14 AC 132 ms
25,968 KB
testcase_15 AC 147 ms
27,276 KB
testcase_16 AC 144 ms
27,392 KB
testcase_17 AC 152 ms
27,792 KB
testcase_18 AC 156 ms
28,360 KB
testcase_19 AC 131 ms
28,360 KB
testcase_20 AC 158 ms
27,412 KB
testcase_21 AC 145 ms
26,104 KB
20evil_special_uni1.txt AC 181 ms
27,856 KB
20evil_special_uni2.txt AC 169 ms
26,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using i64 = long long;
using std::cout;
using std::endl;
using std::cin;

int n;
std::vector<std::vector<int>> g;
std::vector<std::map<int, int>> dp;
void dfs(int v = 0, int par = -1, bool f = true) {
	if(dp[v].count(par)) return;
	
	int ret = 0;
	if(f || par == -1) {
		for(auto e : g[v]) {
			if(e == par) continue;
			dfs(e, v, f);
			ret += !dp[e][v];
		}
	} else {
		dfs(v, -1, f);
		dfs(par, v, f);
		ret = dp[v][-1] - !dp[par][v];
	}
	
	dp[v][par] = ret;
	return;
}

int main() {
	scanf("%d", &n); g.resize(n); dp.resize(n);
	for(int i = 0; i < n - 1; i++) {
		int a, b; scanf("%d%d", &a, &b);
		
		g[a - 1].push_back(b - 1);
		g[b - 1].push_back(a - 1);
	}
	
	dfs();
	std::vector<int> ans;
	for(int i = 0; i < n; i++) {
		dfs(i, -1, false);
		if(!dp[i][-1]) ans.push_back(i + 1);
	}
	printf("%d\n", ans.size());
	for(auto v : ans) printf("%d\n", v);
	return 0;
}
0