結果

問題 No.768 Tapris and Noel play the game on Treeone
ユーザー veqccveqcc
提出日時 2019-02-23 14:56:23
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 100 ms / 2,000 ms
コード長 1,362 bytes
コンパイル時間 908 ms
コンパイル使用メモリ 95,520 KB
実行使用メモリ 10,232 KB
最終ジャッジ日時 2024-11-30 01:53:13
合計ジャッジ時間 3,563 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,632 KB
testcase_01 AC 4 ms
5,632 KB
testcase_02 AC 4 ms
5,760 KB
testcase_03 AC 4 ms
5,888 KB
testcase_04 AC 4 ms
5,888 KB
testcase_05 AC 4 ms
5,888 KB
testcase_06 AC 4 ms
5,888 KB
testcase_07 AC 59 ms
8,192 KB
testcase_08 AC 32 ms
7,040 KB
testcase_09 AC 37 ms
7,296 KB
testcase_10 AC 29 ms
6,912 KB
testcase_11 AC 99 ms
9,376 KB
testcase_12 AC 100 ms
9,472 KB
testcase_13 AC 96 ms
9,308 KB
testcase_14 AC 90 ms
9,296 KB
testcase_15 AC 98 ms
9,500 KB
testcase_16 AC 99 ms
9,516 KB
testcase_17 AC 100 ms
9,472 KB
testcase_18 AC 89 ms
10,232 KB
testcase_19 AC 90 ms
10,112 KB
testcase_20 AC 91 ms
10,112 KB
testcase_21 AC 87 ms
9,856 KB
20evil_special_uni1.txt AC 94 ms
9,728 KB
20evil_special_uni2.txt AC 88 ms
9,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <iostream>
#include <iomanip>
#include <cstring>
#include <string>
#include <vector>
#include <queue>
#include <cmath>
#include <stack>
#include <set>
#include <map>
typedef long long ll;
typedef unsigned int uint;
using namespace std;

int n, a, b, dp[100005];
vector <int> edge[100005];

void dfs(int cur, int par) {
    for (int child : edge[cur]) {
        if (child == par) continue;
        dfs(child, cur);
        if (!dp[child]) dp[cur]++;
    }
}

void dfs2(int cur, int par, bool par_win) {
    dp[cur] = 0;
    for (int child : edge[cur]) {
        if (child == par) {
            if (par_win) dp[cur]++;
        } else {
            if (!dp[child]) dp[cur]++;
        }
    }

    for (int child : edge[cur]) {
        if (child == par) continue;
        bool next_par_win = (dp[cur] - (dp[child] == 0 ? 1 : 0)) == 0;
        dfs2(child, cur, next_par_win);
    }
}

int main() {
    cin >> n;
    for (int i = 1; i < n; i++) {
        cin >> a >> b;
        a--; b--;
        edge[a].push_back(b);
        edge[b].push_back(a);
    }

    dfs(0, -1);
    dfs2(0, -1, false);

    vector <int> ans;
    for (int i = 0; i < n; i++) {
        if (dp[i] == 0) {
            ans.push_back(i + 1);
        }
    }

    cout << ans.size() << "\n";
    for (int ret : ans) {
        cout << ret << "\n";
    }

    return 0;
}
0