結果

問題 No.2205 Lights Out on Christmas Tree
ユーザー i_am_noobi_am_noob
提出日時 2023-02-15 18:36:43
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 691 bytes
コンパイル時間 1,812 ms
コンパイル使用メモリ 203,228 KB
実行使用メモリ 27,512 KB
最終ジャッジ日時 2024-07-18 02:50:19
合計ジャッジ時間 6,802 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
8,092 KB
testcase_01 AC 3 ms
8,236 KB
testcase_02 AC 3 ms
8,168 KB
testcase_03 AC 3 ms
8,184 KB
testcase_04 AC 3 ms
8,148 KB
testcase_05 AC 3 ms
8,136 KB
testcase_06 AC 3 ms
8,208 KB
testcase_07 AC 3 ms
8,024 KB
testcase_08 AC 3 ms
8,104 KB
testcase_09 AC 3 ms
8,128 KB
testcase_10 AC 3 ms
8,168 KB
testcase_11 AC 61 ms
15,676 KB
testcase_12 AC 61 ms
15,676 KB
testcase_13 AC 59 ms
15,672 KB
testcase_14 AC 54 ms
15,676 KB
testcase_15 AC 74 ms
27,512 KB
testcase_16 AC 44 ms
12,664 KB
testcase_17 AC 44 ms
12,724 KB
testcase_18 AC 3 ms
8,100 KB
testcase_19 AC 66 ms
15,740 KB
testcase_20 AC 65 ms
15,192 KB
testcase_21 AC 68 ms
15,048 KB
testcase_22 AC 61 ms
16,112 KB
testcase_23 AC 67 ms
15,180 KB
testcase_24 AC 68 ms
15,448 KB
testcase_25 AC 72 ms
15,264 KB
testcase_26 AC 78 ms
15,108 KB
testcase_27 AC 67 ms
15,936 KB
testcase_28 AC 60 ms
16,028 KB
testcase_29 AC 59 ms
16,176 KB
testcase_30 AC 70 ms
15,028 KB
testcase_31 AC 65 ms
15,876 KB
testcase_32 AC 66 ms
15,492 KB
testcase_33 AC 66 ms
15,452 KB
testcase_34 AC 64 ms
15,180 KB
testcase_35 AC 69 ms
15,312 KB
testcase_36 AC 74 ms
15,180 KB
testcase_37 AC 68 ms
15,024 KB
testcase_38 AC 67 ms
15,128 KB
testcase_39 AC 66 ms
15,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define all(a) a.begin(),a.end()
#define pb push_back
#define sz(a) ((int)a.size())

const int maxn=200005;
int n,a[maxn],res;
vector<int> adj[maxn];

void dfs(int u, int par){
    for(auto v: adj[u]) if(v!=par) dfs(v,u),a[u]^=a[v];
    res+=a[u];
}

signed main(){
    ios_base::sync_with_stdio(0),cin.tie(0);
    cin >> n;
    for(int i=0; i<n-1; ++i){
        int u,v; cin >> u >> v; u--,v--;
        adj[u].pb(v),adj[v].pb(u);
    }
    for(int i=0; i<n; ++i) cin >> a[i],a[i]^=1;
    if(count(a,a+n,1)&1){
        cout << "-1\n";
        return 0;
    }
    dfs(0,-1);
    cout << res << "\n";
}
0