제출 #821764

#제출 시각아이디문제언어결과실행 시간메모리
821764vjudge1Power Plant (JOI20_power)C++14
100 / 100
109 ms28748 KiB
#include<bits/stdc++.h>
#define fi first
#define se second
#define ll long long
using namespace std ;
const int N = 2e5 ;
int n, s, ans, dp[N + 1] ;
char c[N + 1] ;
vector<int> v[N + 1] ;
void dfs(int city, int last)
{
    int sum = 0, mx = 0 ;
    for(int i : v[city])
    {
        if(i == last)
            continue ;
        dfs(i, city) ;
        sum += max(0, dp[i]) ;
        mx = max(mx, dp[i]) ;
    }
    dp[city] = max(c[city] - '0', sum - ((c[city] ^ 1) == '0')) ;
    if(c[city] == '1')
        ans = max(ans, mx + 1) ;
    ans = max(ans, dp[city]) ;
}
signed main()
{
    ios_base::sync_with_stdio( 0 ) ;
    cin.tie( 0 ) ;
    cout.tie( 0 ) ;
    cin >> n ;
    for(int i = 1 ; i < n ; i++)
    {
        int a, b ;
        cin >> a >> b ;
        v[a].push_back(b) ;
        v[b].push_back(a) ;
    }
    for(int i = 1 ; i <= n ; i++)
        cin >> c[i] ;
    dfs(1, 0) ;
    cout << ans ;
    return 0 ;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...