結果

問題 No.2205 Lights Out on Christmas Tree
ユーザー nono00nono00
提出日時 2023-02-10 02:52:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 180 ms / 2,000 ms
コード長 1,508 bytes
コンパイル時間 2,449 ms
コンパイル使用メモリ 210,716 KB
実行使用メモリ 18,436 KB
最終ジャッジ日時 2024-07-07 02:24:45
合計ジャッジ時間 9,876 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 174 ms
18,336 KB
testcase_12 AC 174 ms
18,204 KB
testcase_13 AC 165 ms
18,204 KB
testcase_14 AC 143 ms
18,208 KB
testcase_15 AC 172 ms
16,604 KB
testcase_16 AC 113 ms
12,328 KB
testcase_17 AC 109 ms
12,280 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 172 ms
17,740 KB
testcase_20 AC 174 ms
16,912 KB
testcase_21 AC 173 ms
16,772 KB
testcase_22 AC 161 ms
18,436 KB
testcase_23 AC 172 ms
16,964 KB
testcase_24 AC 175 ms
17,300 KB
testcase_25 AC 177 ms
16,772 KB
testcase_26 AC 177 ms
16,520 KB
testcase_27 AC 172 ms
18,028 KB
testcase_28 AC 158 ms
18,304 KB
testcase_29 AC 164 ms
18,384 KB
testcase_30 AC 179 ms
16,704 KB
testcase_31 AC 172 ms
18,008 KB
testcase_32 AC 177 ms
17,100 KB
testcase_33 AC 172 ms
17,240 KB
testcase_34 AC 166 ms
17,092 KB
testcase_35 AC 177 ms
16,892 KB
testcase_36 AC 176 ms
16,716 KB
testcase_37 AC 171 ms
17,212 KB
testcase_38 AC 180 ms
16,696 KB
testcase_39 AC 170 ms
17,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i, l, r) for (int i = (int)(l); i < (int)(r); i++)
#define rrep(i, r, l) for (int i = (int)(r); i > (int)(l); i--)
#define all(a) (a).begin(), (a).end()
#define rall(a) (a).rbegin(), (a).rend()

// 適当に根付き木にする
// 深い頂点から白なら黒にする
//      このとき、親頂点の色も反転
// 根以外の全てを黒にした時、根も黒ならOK
//

void solve() {
    int n;
    cin >> n;
    vector<vector<int>> graph(n, vector<int>());
    rep(i, 0, n - 1) {
        int a, b;
        cin >> a >> b;
        a--; b--;
        graph[a].push_back(b);
        graph[b].push_back(a);
    }
    vector<int> color(n), parent(n, -1);
    rep(i, 0, n) cin >> color[i];

    int root = 0;
    queue<int> q;
    stack<int> stack;
    q.push(root);
    while(!q.empty()) {
        int u = q.front(); q.pop();
        for (int v: graph[u]) {
            if (v == parent[u]) {
                continue;
            }
            parent[v] = u;
            q.push(v);
            stack.push(v);
        }
    }

    int count = 0;
    while (!stack.empty()) {
        int u = stack.top(); stack.pop();
        if (color[u] == 0) {
            color[u] = 1;
            color[parent[u]] ^= 1;
            count++;
        }
    }

    if (color[root] == 0) {
        cout << -1 << '\n';
    } else {
        cout << count << '\n';
    }
}

int main() {
    int q = 1;
    // cin >> q;
    while (q--) {
        solve();
    }
}
0