結果

問題 No.2205 Lights Out on Christmas Tree
ユーザー roarisroaris
提出日時 2023-02-03 23:04:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 978 bytes
コンパイル時間 2,183 ms
コンパイル使用メモリ 204,200 KB
実行使用メモリ 38,596 KB
最終ジャッジ日時 2024-07-02 21:10:10
合計ジャッジ時間 6,461 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
8,516 KB
testcase_01 AC 4 ms
8,520 KB
testcase_02 AC 4 ms
8,900 KB
testcase_03 AC 4 ms
9,796 KB
testcase_04 AC 4 ms
9,796 KB
testcase_05 AC 4 ms
8,900 KB
testcase_06 AC 4 ms
8,644 KB
testcase_07 AC 4 ms
8,644 KB
testcase_08 AC 4 ms
9,408 KB
testcase_09 AC 4 ms
9,540 KB
testcase_10 AC 4 ms
8,644 KB
testcase_11 AC 72 ms
17,212 KB
testcase_12 AC 71 ms
17,332 KB
testcase_13 AC 71 ms
17,248 KB
testcase_14 AC 65 ms
17,284 KB
testcase_15 AC 96 ms
38,596 KB
testcase_16 AC 54 ms
14,148 KB
testcase_17 AC 53 ms
14,152 KB
testcase_18 AC 5 ms
9,280 KB
testcase_19 AC 79 ms
17,472 KB
testcase_20 AC 87 ms
16,836 KB
testcase_21 AC 86 ms
16,836 KB
testcase_22 AC 70 ms
17,864 KB
testcase_23 AC 78 ms
16,832 KB
testcase_24 AC 80 ms
17,096 KB
testcase_25 AC 88 ms
16,836 KB
testcase_26 AC 96 ms
16,836 KB
testcase_27 AC 78 ms
17,604 KB
testcase_28 AC 70 ms
17,732 KB
testcase_29 AC 71 ms
17,860 KB
testcase_30 AC 95 ms
16,788 KB
testcase_31 AC 78 ms
17,604 KB
testcase_32 AC 82 ms
17,092 KB
testcase_33 AC 84 ms
17,092 KB
testcase_34 AC 78 ms
16,836 KB
testcase_35 AC 94 ms
16,832 KB
testcase_36 AC 92 ms
16,704 KB
testcase_37 AC 76 ms
16,708 KB
testcase_38 AC 96 ms
16,836 KB
testcase_39 AC 78 ms
17,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (int i=0; i<n; i++)
#define pb push_back
typedef long long ll;

int N;
vector<int> G[200010];
int c[200010];
int memo[2][200010];

int dfs(int f, int v, int pv=-1) {
    if (memo[f][v]!=-1) return memo[f][v];
    int dp0 = 0;
    int dp1 = 1e9;
    for (int nv : G[v]) {
        if (nv==pv) continue;
        int c0 = dfs(0, nv, v);
        int c1 = dfs(1, nv, v);
        int ndp0 = min(dp0+c1, dp1+c0+1);
        int ndp1 = min(dp0+c0+1, dp1+c1);
        dp0 = ndp0;
        dp1 = ndp1;
    }
    int res = c[v]^f ? dp1 : dp0;
    return memo[f][v] = res;
}

int main() {
    cin.tie(0); ios::sync_with_stdio(false);
    
    cin >> N;
    rep(i, N-1) {
        int u, v; cin >> u >> v;
        G[u-1].pb(v-1);
        G[v-1].pb(u-1);
    }
    rep(i, N) cin >> c[i];
    
    rep(f, 2) rep(v, N) memo[f][v] = -1;
    int ans = dfs(1, 0);
    if (ans>=1e9) cout << -1 << endl;
    else cout << ans << endl;
}
0