이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "cave.h"
#include <bits/stdc++.h>
bool done[5005];
int get(int S[]) {
int ret = tryCombination(S);
if (ret == -1) ret = 5001;
return ret;
}
void exploreCave(int N) {
int s[N], d[N];
memset(s, 0, sizeof(s));
for (int i = 0; i < N; i++) {
int l = 0, r = N - 1;
// assume doors [0, i-1] are already open
for (int j = 0; j < N; j++) if (!done[j]) s[j] = 0;
bool state = get(s) == i;
for (int j = 0; j < N; j++) if (!done[j]) s[j] = !state;
while (l < r) {
int m = (l + r) / 2;
for (int j = l; j <= m; j++)
if (!done[j]) s[j] = state;
int idx = get(s);
for (int j = l; j <= m; j++)
if (!done[j]) s[j] = !state;
if (idx == i) l = m + 1;
else r = m;
}
s[l] = state;
d[l] = i;
done[l] = true;
}
answer(s, d);
}
# | 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... |