結果

問題 No.2205 Lights Out on Christmas Tree
ユーザー Lê Hoàng NgôLê Hoàng Ngô
提出日時 2024-06-29 22:18:53
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 1,617 bytes
コンパイル時間 1,555 ms
コンパイル使用メモリ 170,468 KB
実行使用メモリ 34,560 KB
最終ジャッジ日時 2024-06-29 22:19:00
合計ジャッジ時間 6,532 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
15,104 KB
testcase_01 AC 4 ms
15,232 KB
testcase_02 AC 4 ms
15,232 KB
testcase_03 AC 4 ms
15,232 KB
testcase_04 AC 4 ms
15,232 KB
testcase_05 AC 4 ms
15,232 KB
testcase_06 AC 5 ms
15,232 KB
testcase_07 AC 5 ms
15,232 KB
testcase_08 AC 4 ms
15,232 KB
testcase_09 AC 4 ms
15,232 KB
testcase_10 AC 4 ms
15,232 KB
testcase_11 AC 60 ms
22,840 KB
testcase_12 AC 61 ms
22,840 KB
testcase_13 AC 65 ms
22,836 KB
testcase_14 AC 56 ms
22,840 KB
testcase_15 AC 75 ms
34,560 KB
testcase_16 AC 46 ms
19,840 KB
testcase_17 AC 45 ms
19,712 KB
testcase_18 AC 5 ms
15,232 KB
testcase_19 AC 67 ms
22,784 KB
testcase_20 AC 71 ms
22,272 KB
testcase_21 AC 69 ms
22,144 KB
testcase_22 AC 73 ms
23,296 KB
testcase_23 AC 70 ms
22,144 KB
testcase_24 AC 72 ms
22,400 KB
testcase_25 AC 74 ms
22,272 KB
testcase_26 AC 83 ms
22,272 KB
testcase_27 AC 72 ms
23,040 KB
testcase_28 AC 62 ms
23,296 KB
testcase_29 AC 61 ms
23,168 KB
testcase_30 AC 84 ms
22,272 KB
testcase_31 AC 73 ms
23,040 KB
testcase_32 AC 70 ms
22,400 KB
testcase_33 AC 73 ms
22,400 KB
testcase_34 AC 71 ms
22,272 KB
testcase_35 AC 77 ms
22,272 KB
testcase_36 AC 74 ms
22,144 KB
testcase_37 AC 80 ms
22,144 KB
testcase_38 AC 77 ms
22,272 KB
testcase_39 AC 70 ms
22,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define all(x) x.begin(),x.end()
#define rep(i,a,b) for(int i=a;i<=b;i++)
#define rep_r(i,a,b) for(int i=a;i>=b;i--)
#define each(a,x) for (auto& x : a)
using pi = pair<int,int>;
using pl = pair<ll,ll>;
using vi = vector<int>;
using vl = vector<ll>;
#define sz(x) int(x.size())
#define so(x) sort(all(x))
#define so_r(x) sort(all(x),greater<int>())
#define lb lower_bound
#define ub upper_bound
const char nl = '\n';
int dx[4] = {1,-1,0,0};
int dy[4] = {0,0,1,-1};
int bit_cnt(int x){
    return __builtin_popcount(x);
}
ll bex(ll a, ll b, ll mod = 1e9 + 7){ll res = 1LL; while(b){ if (b&1) res = res * a % mod; a = a * a % mod; b >>= 1;} return res;}
template<class t,class u> bool chmax(t&a,u b){if(a<b){a=b;return true;}else return false;}
template<class t,class u> bool chmin(t&a,u b){if(b<a){a=b;return true;}else return false;}

const int MOD = 998244353;
const int N = 5e5 + 5;
const ll INF = 1e16;
int n; 
int ans = 0; 
vi g[N]; 
int c[N];
void dfs(int u, int fa){
    int white = 0;
    each(g[u],v){
        if (v==fa)continue;
        dfs(v,u);
        white += (c[v] == 0);
    }
    ans += white;
    if (white&1) c[u] = 1 - c[u];
}
void solve(){
    cin >> n;
    rep(i,1,n-1){
        int a,b;
        cin >> a >> b; 
        g[a].push_back(b); 
        g[b].push_back(a);
    }
    rep(i,1,n) cin >> c[i]; 
    dfs(1,1);
    if (c[1] == 0) cout << -1 << nl;
    else cout << ans << nl;
}

int main(){
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);

    int t = 1; 
    // cin >> t;

    while (t--){
        solve();
    }
}
0