This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
#define F first
#define S second
#define pb push_back
#define ppb pop_back
#define ep insert
#define endl '\n'
#define elif else if
#define pow pwr
#define sqrt sqrtt
#define int long long
#define y1 YONE
typedef unsigned long long ull;
using namespace std;
const int N=2e5+5;
int n,dp[N];
vector<int> adj[N];
bool a[N];
int rec(int node,int p){
//int s=bool(p);
dp[node]=0;
for (auto u:adj[node]) if (u!=p) dp[node]+=rec(u,node);
if (adj[node].size()<=1) dp[node]+=a[node];
else dp[node]-=a[node];
return dp[node]=max(dp[node],(int)a[node]);
}
int32_t main(){
ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
cin>>n;
for (int i=1;i<n;i++){
int x,y;cin>>x>>y;
adj[x].pb(y);adj[y].pb(x);
}for (int i=1;i<=n;i++){char c;cin>>c;a[i]=c-'0';}
cout<<rec(1,0);
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |