結果
問題 | No.768 Tapris and Noel play the game on Treeone |
ユーザー | sugim48 |
提出日時 | 2018-12-19 01:56:44 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 76 ms / 2,000 ms |
コード長 | 1,265 bytes |
コンパイル時間 | 2,229 ms |
コンパイル使用メモリ | 207,160 KB |
実行使用メモリ | 9,852 KB |
最終ジャッジ日時 | 2024-09-25 07:52:42 |
合計ジャッジ時間 | 4,181 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 40 ms
6,944 KB |
testcase_08 | AC | 19 ms
6,944 KB |
testcase_09 | AC | 22 ms
6,944 KB |
testcase_10 | AC | 16 ms
6,944 KB |
testcase_11 | AC | 76 ms
9,088 KB |
testcase_12 | AC | 64 ms
9,088 KB |
testcase_13 | AC | 62 ms
8,960 KB |
testcase_14 | AC | 61 ms
8,832 KB |
testcase_15 | AC | 64 ms
9,216 KB |
testcase_16 | AC | 57 ms
9,292 KB |
testcase_17 | AC | 63 ms
9,476 KB |
testcase_18 | AC | 52 ms
9,852 KB |
testcase_19 | AC | 53 ms
9,800 KB |
testcase_20 | AC | 56 ms
9,728 KB |
testcase_21 | AC | 50 ms
9,356 KB |
20evil_special_uni1.txt | AC | 58 ms
9,432 KB |
20evil_special_uni2.txt | AC | 56 ms
9,216 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i, N) for (int i = 0; i < (N); i++) #define all(a) (a).begin(), (a).end() #define pb push_back using ll = long long; using i_i = tuple<int, int>; void dfs_down(int u, int p, vector<vector<int>>& G, vector<bool>& down) { down[u] = true; for (int v: G[u]) if (v != p) { dfs_down(v, u, G, down); if (down[v]) down[u] = false; } } void dfs_up(int u, int p, vector<vector<int>>& G, vector<bool>& down, vector<bool>& up) { int cnt = up[u]; for (int v: G[u]) if (v != p) cnt += down[v]; for (int v: G[u]) if (v != p) { up[v] = (cnt - down[v] == 0); dfs_up(v, u, G, down, up); } } int main() { int N; cin >> N; vector<vector<int>> G(N); rep(i, N - 1) { int u, v; scanf("%d%d", &u, &v); u--; v--; G[u].pb(v); G[v].pb(u); } vector<bool> down(N); dfs_down(0, -1, G, down); vector<bool> up(N); dfs_up(0, -1, G, down, up); vector<int> V; rep(u, N) if (down[u] && !up[u]) V.pb(u); int M = V.size(); cout << M << endl; rep(j, M) printf("%d\n", V[j] + 1); // rep(u, N) cout << down[u]; // cout << endl; // rep(u, N) cout << up[u]; // cout << endl; }