結果

問題 No.2205 Lights Out on Christmas Tree
ユーザー umezoumezo
提出日時 2023-02-05 06:38:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 857 bytes
コンパイル時間 2,014 ms
コンパイル使用メモリ 205,332 KB
実行使用メモリ 24,704 KB
最終ジャッジ日時 2024-07-03 23:20:15
合計ジャッジ時間 7,171 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
9,600 KB
testcase_01 AC 5 ms
9,600 KB
testcase_02 AC 5 ms
9,600 KB
testcase_03 AC 5 ms
9,600 KB
testcase_04 AC 6 ms
9,600 KB
testcase_05 AC 5 ms
9,668 KB
testcase_06 AC 5 ms
9,600 KB
testcase_07 AC 5 ms
9,600 KB
testcase_08 AC 5 ms
9,728 KB
testcase_09 AC 5 ms
9,600 KB
testcase_10 AC 5 ms
9,580 KB
testcase_11 AC 69 ms
17,240 KB
testcase_12 AC 66 ms
17,236 KB
testcase_13 AC 69 ms
17,368 KB
testcase_14 AC 62 ms
17,364 KB
testcase_15 AC 74 ms
24,704 KB
testcase_16 AC 48 ms
14,080 KB
testcase_17 AC 46 ms
14,080 KB
testcase_18 AC 5 ms
9,744 KB
testcase_19 AC 67 ms
17,024 KB
testcase_20 AC 71 ms
16,452 KB
testcase_21 AC 73 ms
16,512 KB
testcase_22 AC 63 ms
17,536 KB
testcase_23 AC 71 ms
16,640 KB
testcase_24 AC 71 ms
16,768 KB
testcase_25 AC 70 ms
16,512 KB
testcase_26 AC 82 ms
16,384 KB
testcase_27 AC 69 ms
17,280 KB
testcase_28 AC 59 ms
17,476 KB
testcase_29 AC 62 ms
17,664 KB
testcase_30 AC 79 ms
16,512 KB
testcase_31 AC 69 ms
17,152 KB
testcase_32 AC 69 ms
16,768 KB
testcase_33 AC 67 ms
16,832 KB
testcase_34 AC 69 ms
16,384 KB
testcase_35 AC 76 ms
16,576 KB
testcase_36 AC 81 ms
16,580 KB
testcase_37 AC 70 ms
16,452 KB
testcase_38 AC 85 ms
16,584 KB
testcase_39 AC 72 ms
17,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;
 
#include<bits/stdc++.h>
using namespace std;

vector<int> G[200200];
int dp[200200][2];

int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  rep(i,200200) rep(j,2) dp[i][j]=-1;
  
  int n;
  cin>>n;
  rep(i,n-1){
    int a,b;
    cin>>a>>b;
    a--,b--;
    G[a].push_back(b);
    G[b].push_back(a);
  }
  vector<int> C(n);
  rep(i,n) cin>>C[i];
  
  auto dfs=[&](auto dfs,int v,int p)->void{
    int c=0;
    if(C[v]==0) c++;
    int sum=0;
    for(auto nv:G[v]){
      if(nv==p) continue;
      dfs(dfs,nv,v);
      if(dp[nv][1]!=-1){
        c++;
        sum+=dp[nv][1]+1;
      }
      else sum+=dp[nv][0];
    }
    if(c%2==0) dp[v][0]=sum;
    else dp[v][1]=sum;
  };
  
  dfs(dfs,0,-1);
  cout<<dp[0][0]<<endl;
  
  return 0;
}
0