# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
988728 | Ariadna | 동굴 (IOI13_cave) | C++14 | 2 ms | 604 KiB |
이 제출은 이전 버전의 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 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-1, ans;
while (l <= r) {
int m = (l+r)/2;
for (int i = 0; i < N; ++i) {
if (pos[i] != -1) s[i] = pos[i];
else if (i < m) s[i] = correct_pos;
else s[i] = 1-correct_pos;
}
int res = tryCombination(s);
if (res > d || res == -1) {
r = m-1;
} else {
ans = m;
l = m+1;
}
}
pos[ans] = correct_pos;
door[ans] = d;
}
answer(pos, door);
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |