結果

問題 No.768 Tapris and Noel play the game on Treeone
ユーザー polylogKpolylogK
提出日時 2019-09-10 18:01:48
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 157 ms / 2,000 ms
コード長 1,238 bytes
コンパイル時間 1,797 ms
コンパイル使用メモリ 182,492 KB
実行使用メモリ 32,656 KB
最終ジャッジ日時 2024-07-02 16:17:54
合計ジャッジ時間 5,671 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 68 ms
19,072 KB
testcase_08 AC 32 ms
11,648 KB
testcase_09 AC 37 ms
13,312 KB
testcase_10 AC 28 ms
10,752 KB
testcase_11 AC 108 ms
27,936 KB
testcase_12 AC 114 ms
28,032 KB
testcase_13 AC 107 ms
27,264 KB
testcase_14 AC 104 ms
27,240 KB
testcase_15 AC 113 ms
28,928 KB
testcase_16 AC 108 ms
28,992 KB
testcase_17 AC 127 ms
29,440 KB
testcase_18 AC 156 ms
32,656 KB
testcase_19 AC 134 ms
32,620 KB
testcase_20 AC 157 ms
31,360 KB
testcase_21 AC 153 ms
30,080 KB
20evil_special_uni1.txt AC 148 ms
30,044 KB
20evil_special_uni2.txt AC 144 ms
28,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

template<typename T>
std::vector<T> make_v(size_t a){return std::vector<T>(a);}

template<typename T,typename... Ts>
auto make_v(size_t a,Ts... ts){
  return std::vector<decltype(make_v<T>(ts...))>(a,make_v<T>(ts...));
}

int main() {
	int n; scanf("%d", &n);
	std::vector<std::vector<int>> g(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<std::map<int, int>> dp(n);
	auto solve = [&](auto&& solve, int v, int par, bool flag) -> int {
		if(dp[v].count(par)) return dp[v][par];
			
		int val = 0;
		if(flag or par == -1) {
			for(auto e: g[v]) {
				if(e == par) continue;
				val += !solve(solve, e, v, flag);
			}
		} else {
			int parent_val = !solve(solve, par, v, flag);
			int around_val = solve(solve, v, -1, flag);
			val = around_val - parent_val;
		}

		return dp[v][par] = val;
	};
	solve(solve, 0, -1, 1);

	std::set<int> st;
	for(int v = 0; v < n; v++) if(!solve(solve, v, -1, 0)) st.insert(v);

	printf("%d\n", st.size());
	for(auto v: st) printf("%d\n", v + 1);
	return 0;
}
0