結果

問題 No.768 Tapris and Noel play the game on Treeone
ユーザー lumc_lumc_
提出日時 2018-12-15 14:36:24
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 1,332 bytes
コンパイル時間 1,041 ms
コンパイル使用メモリ 113,544 KB
実行使用メモリ 28,256 KB
最終ジャッジ日時 2024-09-25 06:37:29
合計ジャッジ時間 4,166 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
10,368 KB
testcase_01 AC 6 ms
10,240 KB
testcase_02 AC 6 ms
10,240 KB
testcase_03 AC 6 ms
10,240 KB
testcase_04 AC 5 ms
10,476 KB
testcase_05 AC 6 ms
10,368 KB
testcase_06 AC 5 ms
10,240 KB
testcase_07 AC 65 ms
20,816 KB
testcase_08 AC 36 ms
15,652 KB
testcase_09 AC 41 ms
16,856 KB
testcase_10 AC 31 ms
15,232 KB
testcase_11 AC 119 ms
26,512 KB
testcase_12 AC 114 ms
26,624 KB
testcase_13 AC 105 ms
26,456 KB
testcase_14 AC 105 ms
26,364 KB
testcase_15 AC 117 ms
27,388 KB
testcase_16 AC 124 ms
27,340 KB
testcase_17 AC 128 ms
27,648 KB
testcase_18 AC 130 ms
28,128 KB
testcase_19 AC 110 ms
28,256 KB
testcase_20 AC 127 ms
27,404 KB
testcase_21 AC 121 ms
26,536 KB
20evil_special_uni1.txt AC 160 ms
27,600 KB
20evil_special_uni2.txt AC 132 ms
26,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #
プレゼンテーションモードにする

// includes {{{
#include<iostream>
#include<iomanip>
#include<algorithm>
#include<vector>
#include<stack>
#include<queue>
#include<map>
#include<set>
#include<tuple>
#include<cmath>
#include<random>
#include<cassert>
// #include<deque>
// #include<multiset>
// #include<bitset>
// #include<cstring>
// #include<bits/stdc++.h>
// }}}
using namespace std;
using ll = long long;
const int N = 1e5;
vector< vector< int > > g(N);
using Value = int;
map< int, Value > dp[N]; // dp[i][j] := j, iwinning
Value dfs(int i, int p, int f) {
if(dp[i].count(p)) return dp[i][p];
int deg = g[i].size() - (p != -1);
Value res = 0;
if(f || p == -1) {
// O(deg)
// go only child
for(int j : g[i])
if(j != p) {
res += !dfs(j, i, f);
}
} else {
// O(1)
res = dfs(i, -1, f) - (!dfs(p, i, f));
}
return dp[i][p] = res;
}
int n;
int main() {
std::ios::sync_with_stdio(false), std::cin.tie(0);
cin >> n;
for(int i = 0; i < n - 1; i++) {
int a, b;
cin >> a >> b;
a--;
b--;
g[a].emplace_back(b);
g[b].emplace_back(a);
}
dfs(0, -1, 1);
vector<int> v;
for(int i = 0; i < n; i++) if(!dfs(i, -1, 0)) v.emplace_back(i);
cout << v.size() << "\n";
for(int e : v) cout << e + 1 << "\n";
return 0;
}
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
0