이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "cave.h"
int n, s[5001], d[5001], a[5001], b[5001];
void exploreCave(int N) {
memset(d, -1, sizeof(d));
n = N;
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
if (d[j] >= 0) s[j] = d[j];
else s[j] = 0;
}
int w = tryCombination(s);
int lo = 0, hi = n;
while (lo + 1 < hi) {
int mid = (lo + hi) / 2;
for (int j = 0; j < n; j++) {
if (d[j] >= 0) s[j] = d[j];
else {
if (j < mid) s[j] = 1;
else s[j] = 0;
}
}
int y = tryCombination(s);
if (w == i) {
if (w != y) hi = mid;
else lo = mid;
}
else {
if (y == i) hi = mid;
else lo = mid;
}
}
a[lo] = i;
d[lo] = (w == i ? 1 : 0);
}
answer(d, a);
}
# | 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... |