結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 170 ms
15,772 KB
testcase_12 AC 171 ms
15,772 KB
testcase_13 AC 167 ms
15,780 KB
testcase_14 AC 142 ms
15,776 KB
testcase_15 AC 185 ms
25,404 KB
testcase_16 AC 114 ms
10,936 KB
testcase_17 AC 113 ms
10,880 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 172 ms
15,672 KB
testcase_20 AC 174 ms
14,968 KB
testcase_21 AC 174 ms
14,968 KB
testcase_22 AC 161 ms
16,056 KB
testcase_23 AC 174 ms
15,052 KB
testcase_24 AC 170 ms
15,204 KB
testcase_25 AC 178 ms
14,952 KB
testcase_26 AC 194 ms
14,912 KB
testcase_27 AC 173 ms
15,672 KB
testcase_28 AC 158 ms
16,004 KB
testcase_29 AC 161 ms
16,000 KB
testcase_30 AC 191 ms
14,880 KB
testcase_31 AC 172 ms
15,848 KB
testcase_32 AC 173 ms
15,256 KB
testcase_33 AC 175 ms
15,300 KB
testcase_34 AC 170 ms
14,944 KB
testcase_35 AC 187 ms
14,972 KB
testcase_36 AC 184 ms
15,032 KB
testcase_37 AC 172 ms
14,976 KB
testcase_38 AC 191 ms
14,988 KB
testcase_39 AC 171 ms
15,584 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