# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1056369 | Piokemon | The Xana coup (BOI21_xanadu) | C++17 | 35 ms | 17780 KiB |
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>
using namespace std;
typedef long long int ll;
constexpr int N = 100'000;
int a[N+9];
vector<int> graf[N+9];
ll dp[N+9][2][2];
ll dp2[N+9][2][2];
void dfs(int v, int par){
if (graf[v].size()==1 && v!=1){
dp[v][a[v]][0]=0;
dp[v][1-a[v]][1]=1;
dp[v][a[v]][1]=1e9;
dp[v][1-a[v]][0]=1e9;
return;
}
int nr=1;
dp2[0][0][0]=0; dp2[0][0][1]=1e9;
dp2[0][1][0]=0; dp2[0][1][1]=1e9;
ll s0=0,s1=0;
for (int x:graf[v]){
if (x==par)continue;
dfs(x,v);
}
for (int x:graf[v]){
if (x==par)continue;
for (int z=0;z<2;z++){
dp2[nr][z][0]=min(dp2[nr-1][z][0]+dp[x][z][0],dp2[nr-1][z][1]+dp[x][z][1]);
Compilation message (stderr)
# | 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... |