# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1097744 | vjudge1 | The Xana coup (BOI21_xanadu) | C++17 | 76 ms | 26708 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>
#define int long long
using namespace std;
const int maxn=2e5+10,inf=0x3f3f3f3f;
int n,a[maxn],f[maxn][3][3],g1[maxn][3],g2[maxn][3];
vector<int>e[maxn];
void dfs(int u,int fa){
if(e[u].size()==1&&u!=1){
if(a[u]==1){
f[u][0][1]=0;
f[u][1][0]=1;
}
else{
f[u][0][0]=0;
f[u][1][1]=1;
}
return ;
}
for(int v:e[u]){
if(v==fa)continue;
dfs(v,u);
}
g1[0][1]=g2[0][1]=inf;
int cnt=0;
for(int v:e[u]){
if(v==fa)continue;
++cnt;
g1[cnt][0]=min(g1[cnt-1][1]+f[v][1][0],g1[cnt-1][0]+f[v][0][0]);
g1[cnt][1]=min(g1[cnt-1][1]+f[v][0][0],g1[cnt-1][0]+f[v][1][0]);
g2[cnt][0]=min(g2[cnt-1][1]+f[v][1][1],g2[cnt-1][0]+f[v][0][1]);
# | 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... |