Submission #1095392

#TimeUsernameProblemLanguageResultExecution timeMemory
1095392Neco_arcThe Xana coup (BOI21_xanadu)C++17
Compilation error
0 ms0 KiB
#include <bits/stdc++.h>
#ifndef ONLINE_JUDGE
#include <C:\debug.hpp>
#endif // ONLINE_JUDGE

#define ll long long
#define ull unsigned long long
#define all(x) x.begin(), x.end()
#define Neco "xanadu"
#define resp(x) sort(all(x)), x.resize(unique(all(x)) - x.begin())
#define getbit(x,i) ((x >> i)&1)
#define _left id * 2, l, mid
#define _right id * 2 + 1, mid + 1, r
#define cntbit(x) __builtin_popcountll(x)
#define fi(i, a, b) for(int i = a; i <= b; i++)
#define fid(i, a, b) for(int i = a; i >= b; i--)
#define maxn (int) 1e5 + 7

using namespace std;

const ll mod = 1e9 + 7; //972663749
const ll base = 911382323;

mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count());
ll GetRandom(ll l, ll r) {
    return uniform_int_distribution<ll> (l, r)(rng);
}

int n;
int a[maxn], dp[maxn][2][2];
vector<int> edges[maxn];

void Minimize(int &x, int y) {
    x = min(x, y);
}

void dfs(int u, int par) {

    int S[] = {0, 0}, cnt[] = {0, 0}, Min[] = {(int) 1e9, (int) 1e9};
    memset(dp[u], 60, sizeof dp[u]);

    for(int v : edges[u]) if(v != par) {
        dfs(v, u);
        fi(i, 0, 1) {
            int t = dp[v][i^1][0] < dp[v][i^1][1] ? 0 : 1;
            S[i] += dp[v][i^1][t], cnt[i] ^= t;
            Min[i] = min(Min[i], dp[v][i^1][t^1] - dp[v][i^1][t]);
        }
    }

    /// su dung thao tac o u
    Minimize(dp[u][a[u] ^ cnt[1] ^ 1][1], S[1] + 1);
    Minimize(dp[u][a[u] ^ cnt[1]][1], S[1] + Min[1] + 1);


    /// ko dung thao tac o u
    Minimize(dp[u][a[u] ^ cnt[0]][0], S[0]);
    Minimize(dp[u][a[u] ^ cnt[0] ^ 1][0], S[0] + Min[0]);
}

void solve()
{

    cin >> n;
    fi(i, 1, n - 1) {
        int x, y; cin >> x >> y;
        edges[x].push_back(y), edges[y].push_back(x);
    }
    fi(i, 1, n) cin >> a[i], a[i] ^= 1;

    dfs(1, 0);
    int ans = 1e9;

    fi(i, 0, 1) ans = min(ans, dp[1][1][i]);

    if(ans == 1e9) cout << "impossible";
    else cout << ans;

}


int main()
{

    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);

    if(fopen(Neco".inp", "r")) {
        freopen(Neco".inp", "r", stdin);
        freopen(Neco".out", "w", stdout);
    }

    int nTest = 1;
//    cin >> nTest;

    while(nTest--)
    {
        solve();
    }


    return 0;
}

Compilation message (stderr)

xanadu.cpp:3:10: fatal error: C:\debug.hpp: No such file or directory
    3 | #include <C:\debug.hpp>
      |          ^~~~~~~~~~~~~~
compilation terminated.