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