結果

問題 No.2205 Lights Out on Christmas Tree
ユーザー simansiman
提出日時 2023-02-07 15:55:07
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 172 ms / 2,000 ms
コード長 911 bytes
コンパイル時間 3,553 ms
コンパイル使用メモリ 140,652 KB
実行使用メモリ 27,588 KB
最終ジャッジ日時 2024-07-05 12:11:05
合計ジャッジ時間 10,352 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
8,152 KB
testcase_01 AC 3 ms
8,192 KB
testcase_02 AC 3 ms
8,192 KB
testcase_03 AC 3 ms
8,192 KB
testcase_04 AC 3 ms
8,064 KB
testcase_05 AC 3 ms
8,192 KB
testcase_06 AC 4 ms
8,152 KB
testcase_07 AC 3 ms
8,044 KB
testcase_08 AC 2 ms
8,064 KB
testcase_09 AC 4 ms
8,056 KB
testcase_10 AC 2 ms
8,192 KB
testcase_11 AC 150 ms
15,536 KB
testcase_12 AC 148 ms
15,780 KB
testcase_13 AC 143 ms
15,652 KB
testcase_14 AC 129 ms
15,652 KB
testcase_15 AC 158 ms
27,588 KB
testcase_16 AC 98 ms
12,672 KB
testcase_17 AC 96 ms
12,588 KB
testcase_18 AC 5 ms
8,064 KB
testcase_19 AC 150 ms
15,740 KB
testcase_20 AC 149 ms
15,172 KB
testcase_21 AC 149 ms
15,104 KB
testcase_22 AC 137 ms
16,244 KB
testcase_23 AC 147 ms
15,044 KB
testcase_24 AC 146 ms
15,300 KB
testcase_25 AC 150 ms
15,104 KB
testcase_26 AC 159 ms
15,048 KB
testcase_27 AC 147 ms
15,744 KB
testcase_28 AC 138 ms
16,068 KB
testcase_29 AC 137 ms
16,252 KB
testcase_30 AC 158 ms
15,020 KB
testcase_31 AC 146 ms
15,812 KB
testcase_32 AC 172 ms
15,424 KB
testcase_33 AC 147 ms
15,488 KB
testcase_34 AC 146 ms
15,048 KB
testcase_35 AC 157 ms
15,232 KB
testcase_36 AC 155 ms
15,104 KB
testcase_37 AC 151 ms
15,044 KB
testcase_38 AC 158 ms
15,044 KB
testcase_39 AC 144 ms
15,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cassert>
#include <cmath>
#include <algorithm>
#include <iostream>
#include <iomanip>
#include <climits>
#include <map>
#include <queue>
#include <set>
#include <cstring>
#include <vector>

using namespace std;
typedef long long ll;

int N;
int C[200010];
vector<int> E[200010];

bool dfs(int v, int parent, int &ans) {
  int switch_cnt = 0;
  int color = C[v];

  for (int u : E[v]) {
    if (u == parent) continue;

    if (dfs(u, v, ans)) {
      ++switch_cnt;
      ++ans;
    }
  }

  if ((color + switch_cnt) % 2 == 0) {
    return true;
  } else {
    return false;
  }
}

int main() {
  cin >> N;
  for (int i = 0; i < N - 1; ++i) {
    int a, b;
    cin >> a >> b;

    E[a].push_back(b);
    E[b].push_back(a);
  }

  for (int i = 1; i <= N; ++i) {
    cin >> C[i];
  }

  int ans = 0;

  if (dfs(1, -1, ans)) {
    cout << -1 << endl;
  } else {
    cout << ans << endl;
  }

  return 0;
}
0