結果

問題 No.2205 Lights Out on Christmas Tree
ユーザー HIcoderHIcoder
提出日時 2023-07-10 23:28:12
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 196 ms / 2,000 ms
コード長 1,331 bytes
コンパイル時間 1,420 ms
コンパイル使用メモリ 108,232 KB
実行使用メモリ 25,288 KB
最終ジャッジ日時 2024-09-12 23:53:05
合計ジャッジ時間 8,884 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 171 ms
15,900 KB
testcase_12 AC 172 ms
15,772 KB
testcase_13 AC 167 ms
15,900 KB
testcase_14 AC 143 ms
15,904 KB
testcase_15 AC 182 ms
25,288 KB
testcase_16 AC 114 ms
10,880 KB
testcase_17 AC 112 ms
10,880 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 173 ms
15,556 KB
testcase_20 AC 175 ms
14,940 KB
testcase_21 AC 175 ms
14,880 KB
testcase_22 AC 160 ms
15,964 KB
testcase_23 AC 173 ms
14,884 KB
testcase_24 AC 171 ms
15,312 KB
testcase_25 AC 178 ms
14,980 KB
testcase_26 AC 195 ms
15,020 KB
testcase_27 AC 170 ms
15,616 KB
testcase_28 AC 158 ms
16,040 KB
testcase_29 AC 163 ms
16,112 KB
testcase_30 AC 196 ms
15,020 KB
testcase_31 AC 172 ms
15,796 KB
testcase_32 AC 172 ms
15,300 KB
testcase_33 AC 173 ms
15,340 KB
testcase_34 AC 172 ms
14,880 KB
testcase_35 AC 189 ms
14,968 KB
testcase_36 AC 191 ms
14,984 KB
testcase_37 AC 174 ms
14,940 KB
testcase_38 AC 195 ms
14,972 KB
testcase_39 AC 172 ms
15,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<set>
#include<algorithm>
#include<vector>
#include<string>
#include<set>
#include<map>
#include<numeric>
#include<queue>
#include<cmath>
using namespace std;
typedef long long ll;
const ll INF=1LL<<60;
typedef pair<int,int> P;
typedef pair<int,P> PP;
const ll MOD=998244353;
const double PI=acos(-1);

int main(){
    int N;
    cin>>N;

    vector<vector<int>> G(N);
    for(int i=0;i<N-1;i++){
        int a,b;
        cin>>a>>b;
        a--;b--;
        G[a].push_back(b);
        G[b].push_back(a);
    }

    vector<int> c(N);
    for(int i=0;i<N;i++){
        cin>>c[i];
    }

    int ans=0;
    //葉からフリップを考える

    auto dfs=[&](auto f,int now,int pre)->bool{

        int cnt=0;
        for(int to:G[now]){
            if(to==pre) continue;
            if(!f(f,to,now)){
                //nowの直接の部下(to)が反転させた分.自分nowも反転
                c[now]^=1;
            }
        }

        if(now!=0){
            if(c[now]==0){
                c[now]^=1;
                ans++;

                return false;
            }else{
                return true;
            }
        }else{
            //now==0
            return c[now]==1;
        }


    };

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