이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define ll long long
#define f first
#define s second
#define pb push_back
using namespace std;
ll n,c[100005];
vector<ll>v[100005];
ll dp[100005][2][2];
void solve(ll x,ll par){
    ll keon = 1e9,luon = 0,keof = 1e9,luof = 0;
    for(auto to : v[x]){
        if(to == par)continue;
        solve(to , x);
        ll wk = keon,wl = luon;
        keon = min(wk + dp[to][0][1] , wl + dp[to][1][1]);
        luon = min(wl + dp[to][0][1] , wk + dp[to][1][1]);
        wk = keof , wl = luof;
        keof = min(wk + dp[to][0][0] , wl + dp[to][1][0]);
        luof = min(wl + dp[to][0][0] , wk + dp[to][1][0]);
    }
    for(int i=0; i<2; i++)
        for(int j=0; j<2; j++)
            dp[x][i][j] = 1e9;
    dp[x][0][1 ^ c[x]] = min(dp[x][0][1 ^ c[x]] , keof);
    dp[x][0][c[x]] = min(dp[x][0][c[x]] , luof);
    dp[x][1][c[x]] = min(dp[x][1][c[x]] , keon + 1);
    dp[x][1][c[x] ^ 1] = min(dp[x][1][c[x]] , luon + 1);
    /*cout << x << '\n';
    for(int i=0; i<2; i++)
        for(int j=0; j<2; j++)
            cout << i << " " << j << " " << dp[x][i][j] << '\n';
    cout << "Done\n";
    */
}
int main(){
    ios::sync_with_stdio(false);
    cin >> n;
    for(int i=1; i<n; i++){
        ll x,y;
        cin >> x >> y;
        v[x].pb(y);
        v[y].pb(x);
    }
    
    for(int i=1; i<=n; i++){
        cin >> c[i];
    }
    
    solve(1 , 0);
    ll ans = min(dp[1][1][0] , dp[1][0][0]);
    if(ans > 1e8)
        cout << "impossible\n";
    else
        cout << ans << '\n';
    
    
    
    
    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... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... |