結果

問題 No.2205 Lights Out on Christmas Tree
ユーザー tsugutsugutsugutsugu
提出日時 2023-03-05 16:02:06
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 728 bytes
コンパイル時間 1,702 ms
コンパイル使用メモリ 172,988 KB
実行使用メモリ 27,264 KB
最終ジャッジ日時 2024-09-18 01:36:34
合計ジャッジ時間 6,708 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 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 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 69 ms
15,564 KB
testcase_12 AC 70 ms
15,688 KB
testcase_13 AC 68 ms
15,560 KB
testcase_14 AC 64 ms
15,688 KB
testcase_15 AC 84 ms
27,264 KB
testcase_16 AC 53 ms
10,752 KB
testcase_17 AC 50 ms
10,856 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 79 ms
15,488 KB
testcase_20 AC 78 ms
14,848 KB
testcase_21 AC 79 ms
14,936 KB
testcase_22 AC 69 ms
15,872 KB
testcase_23 AC 78 ms
14,960 KB
testcase_24 AC 77 ms
15,232 KB
testcase_25 AC 83 ms
14,848 KB
testcase_26 AC 93 ms
14,848 KB
testcase_27 AC 75 ms
15,744 KB
testcase_28 AC 67 ms
15,976 KB
testcase_29 AC 69 ms
16,000 KB
testcase_30 AC 95 ms
14,976 KB
testcase_31 AC 77 ms
15,616 KB
testcase_32 AC 77 ms
15,104 KB
testcase_33 AC 76 ms
15,232 KB
testcase_34 AC 76 ms
14,916 KB
testcase_35 AC 91 ms
14,976 KB
testcase_36 AC 90 ms
14,848 KB
testcase_37 AC 78 ms
14,848 KB
testcase_38 AC 95 ms
14,848 KB
testcase_39 AC 77 ms
15,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int n;
vector<vector<int>> G;
vector<int> c;
int ans = 0;

int dfs(int pos, int pre) {
    int cnt = 0;
    for (auto u : G[pos]) {
        if (u != pre) {
            cnt += dfs(u, pos);
        }
    }
    if ((cnt + c[pos]) % 2 == 0) {
        ans++;
        return 1;
    }
    return 0;
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    cin >> n;
    G.resize(n);
    c.resize(n);
    for (int i = 0; i < n - 1; i++) {
        int a, b;
        cin >> a >> b;
        a--, b--;
        G[a].push_back(b);
        G[b].push_back(a);
    }
    for (int i = 0; i < n; i++) {
        cin >> c[i];
    }
    cout << (dfs(0, -1) == 0 ? ans : -1) << endl;
}
0