結果

問題 No.768 Tapris and Noel play the game on Treeone
ユーザー polylogKpolylogK
提出日時 2018-12-15 14:55:33
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 798 bytes
コンパイル時間 2,024 ms
コンパイル使用メモリ 187,064 KB
実行使用メモリ 27,824 KB
最終ジャッジ日時 2024-09-25 06:15:53
合計ジャッジ時間 7,546 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,896 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,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 89 ms
18,176 KB
testcase_08 AC 42 ms
11,008 KB
testcase_09 AC 49 ms
12,544 KB
testcase_10 AC 37 ms
10,496 KB
testcase_11 AC 142 ms
26,388 KB
testcase_12 AC 142 ms
26,592 KB
testcase_13 AC 138 ms
25,940 KB
testcase_14 AC 138 ms
25,864 KB
testcase_15 AC 154 ms
27,356 KB
testcase_16 AC 144 ms
27,304 KB
testcase_17 AC 149 ms
27,824 KB
testcase_18 TLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
20evil_special_uni1.txt -- -
20evil_special_uni2.txt -- -
権限があれば一括ダウンロードができます

ソースコード

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, int par = -1) {
	if(dp[v].count(par)) return;
	
	std::set<int> st;
	for(auto e : g[v]) {
		if(e == par) continue;
		dfs(e, v);
		st.insert(dp[e][v]);
	}
	
	int tmp = 0;
	while(st.count(tmp)) tmp++;
	dp[v][par] = tmp;
	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);
	}
	
	std::vector<int> ans;
	for(int i = 0; i < n; i++) {
		dfs(i);
		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