# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
403311 | Leonardo_Paes | The Xana coup (BOI21_xanadu) | C++17 | 91 ms | 24452 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int maxn = 1e5+10, inf = 0x3f3f3f3f;
bool s[maxn];
int dp[maxn][2][2], aux[maxn][2][2];
vector<int> grafo[maxn];
void solve(int u, int p = 0){
for(int i : {0, 1}){
for(int j : {0, 1}){
dp[u][i][j] = (s[u] ^ i == j ? i : inf);
}
}
for(int v : grafo[u]){
if(v == p) continue;
solve(v, u);
for(int i : {0, 1}){ // ligo ou nao o u
for(int j : {0, 1}){ // vou ficar ligado ou n dependendo da minha subarvore
for(int k : {0, 1}){
for(int l : {0, 1}){
if(i^l) continue; // n pode
aux[u][i][j^k] = min(aux[u][i][j^k], dp[u][i][j] + dp[v][k][l]);
}
}
}
}
for(int i : {0, 1}){
for(int j : {0, 1}){
dp[u][i][j] = aux[u][i][j];
aux[u][i][j] = inf;
}
컴파일 시 표준 에러 (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... |