結果

問題 No.2205 Lights Out on Christmas Tree
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-08-27 02:44:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 184 ms / 2,000 ms
コード長 757 bytes
コンパイル時間 2,025 ms
コンパイル使用メモリ 206,316 KB
実行使用メモリ 24,704 KB
最終ジャッジ日時 2024-06-07 22:35:46
合計ジャッジ時間 9,399 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 1 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 164 ms
15,664 KB
testcase_12 AC 163 ms
15,664 KB
testcase_13 AC 160 ms
15,664 KB
testcase_14 AC 146 ms
15,664 KB
testcase_15 AC 172 ms
24,704 KB
testcase_16 AC 108 ms
10,880 KB
testcase_17 AC 106 ms
11,008 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 164 ms
15,552 KB
testcase_20 AC 172 ms
15,104 KB
testcase_21 AC 170 ms
15,036 KB
testcase_22 AC 151 ms
15,908 KB
testcase_23 AC 163 ms
14,992 KB
testcase_24 AC 163 ms
15,232 KB
testcase_25 AC 166 ms
15,092 KB
testcase_26 AC 184 ms
14,976 KB
testcase_27 AC 162 ms
15,744 KB
testcase_28 AC 151 ms
16,000 KB
testcase_29 AC 155 ms
16,128 KB
testcase_30 AC 177 ms
14,976 KB
testcase_31 AC 165 ms
15,872 KB
testcase_32 AC 169 ms
15,248 KB
testcase_33 AC 169 ms
15,232 KB
testcase_34 AC 168 ms
14,988 KB
testcase_35 AC 181 ms
14,976 KB
testcase_36 AC 178 ms
14,976 KB
testcase_37 AC 169 ms
14,976 KB
testcase_38 AC 183 ms
14,976 KB
testcase_39 AC 168 ms
15,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using ll = long long;

int main(){

    int N, a, b, ans=0;
    cin >> N;
    vector<vector<int>> E(N);
    vector<int> c(N);

    for (int i=0; i<N-1; i++){
        cin >> a >> b; a--; b--;
        E[a].push_back(b);
        E[b].push_back(a);
    }

    for (int i=0; i<N; i++) cin >> c[i];

    auto dfs=[&](auto self, int from, int p)->int{
        int res=0;
        for (auto to : E[from]){
            if (to == p) continue;
            res += self(self, to, from);
        }
        if ((c[from]+res) % 2 == 0){
            ans++;
            return 1;
        }
        else return 0;
    };

    a = dfs(dfs, 0, -1);
    if (a == 1) cout << -1 << endl;
    else cout << ans << endl;

    return 0;
}
0