結果

問題 No.2205 Lights Out on Christmas Tree
ユーザー t98slidert98slider
提出日時 2023-02-03 22:02:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 1,087 bytes
コンパイル時間 1,667 ms
コンパイル使用メモリ 174,520 KB
実行使用メモリ 41,472 KB
最終ジャッジ日時 2024-07-02 19:57:37
合計ジャッジ時間 6,329 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 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 94 ms
27,456 KB
testcase_12 AC 94 ms
27,328 KB
testcase_13 AC 69 ms
15,944 KB
testcase_14 AC 85 ms
26,820 KB
testcase_15 AC 110 ms
41,472 KB
testcase_16 AC 67 ms
18,408 KB
testcase_17 AC 66 ms
18,176 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 101 ms
26,808 KB
testcase_20 AC 77 ms
15,360 KB
testcase_21 AC 115 ms
26,668 KB
testcase_22 AC 89 ms
27,188 KB
testcase_23 AC 103 ms
26,284 KB
testcase_24 AC 102 ms
26,112 KB
testcase_25 AC 119 ms
26,288 KB
testcase_26 AC 121 ms
26,416 KB
testcase_27 AC 100 ms
26,904 KB
testcase_28 AC 91 ms
27,420 KB
testcase_29 AC 92 ms
27,492 KB
testcase_30 AC 122 ms
25,856 KB
testcase_31 AC 100 ms
26,940 KB
testcase_32 AC 110 ms
26,868 KB
testcase_33 AC 109 ms
26,112 KB
testcase_34 AC 100 ms
25,728 KB
testcase_35 AC 124 ms
25,984 KB
testcase_36 AC 123 ms
26,616 KB
testcase_37 AC 101 ms
26,160 KB
testcase_38 AC 79 ms
15,408 KB
testcase_39 AC 75 ms
15,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n, u, v;
    cin >> n;
    vector<vector<int>> g(n);
    vector<int> c(n), wv;
    for(int i = 1; i < n; i++){
        cin >> u >> v;
        g[--u].push_back(--v);
        g[v].push_back(u);
    }
    for(int i = 0; i < n; i++){
        cin >> c[i];
        if(c[i] == 0)wv.push_back(i);
    }
    if(wv.size() & 1){
        cout << -1 << '\n';
        return 0;
    }
    vector<vector<int>> dp(n, vector<int>(2, 1 << 29));
    function<void(int,int)> dfs = [&](int v, int p){
        vector<int>& temp = dp[v];
        temp[c[v] ^ 1] = 0;
        for(auto &&u:g[v]){
            if(u == p)continue;
            dfs(u, v);
            vector<int> nxt(2, 1 << 30);
            for(int i = 0; i < 2; i++){
                for(int j = 0; j < 2; j++){
                    nxt[i ^ j] = min(nxt[i ^ j], temp[i] + dp[u][j] + j);
                }
            }
            swap(temp, nxt);
        }
    };
    dfs(0, -1);
    cout << dp[0][0] << '\n';
}
0