이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "cave.h"
#include <bits/stdc++.h>
using namespace std;
const int N = 5005;
int a[N];
int state1[N], pos1[N];
int state2[N], pos2[N];
void exploreCave(int n) {
for (int i = 0; i < n; ++i) {
memset(a, -1, sizeof a);
for (int j = 0; j < i; ++j) {
a[pos1[j]] = state1[j];
}
for (int j = 0; j < n; ++j) {
if (a[j] == -1) a[j] = 0;
}
int rep = tryCombination(a);
if (rep != i) state1[i] = 0;
else state1[i] = 1;
for (int j = 0; (1 << j) < n; ++j) {
for (int k = 0; k < n; ++k) {
if (k >> j & 1) a[k] = state1[i];
else a[k] = state1[i] ^ 1;
}
for (int k = 0; k < i; ++k) {
a[pos1[k]] = state1[k];
}
rep = tryCombination(a);
if (rep != i) pos1[i] += 1 << j;
}
pos2[pos1[i]] = i;
state2[pos1[i]] = state1[i];
}
answer(state2, pos2);
}
# | 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... |