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