#define rep(i,n) for(int i=0;i<(int)(n);i++) #define ALL(v) v.begin(),v.end() typedef long long ll; #include using namespace std; vector 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 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<