# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
883464 | theghostking | 동굴 (IOI13_cave) | C++17 | 274 ms | 856 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "cave.h"
void exploreCave(int N) {
/* ... */
int sw[N]; //sw[i] -> orientation of ith switch
int dw[N]; //dw[i] -> door that switch i is connected to
for (int i = 0; i<N; i++){
sw[i] = 0;
dw[i] = -1;
}
for (int k = 0; k<N; k++){
//find switch to kth door
for (int i = 0; i<N; i++){
if (dw[i] == -1){
sw[i] = 0;
}
}
int res = tryCombination(sw);
int ori = 1;
if (res > k || res == -1){
ori = 0;
}
//now find range
int lo = 0;
int hi = N-1;
int mid;
int ind;
while (lo <= hi){
if (lo == hi){
ind = lo;
break;
}
mid = (lo + hi)/2;
//check lo...mid
for (int i = lo; i<=mid; i++){
if (dw[i] == -1){
sw[i] = ori;
}
}
for (int i = mid+1; i<=hi; i++){
if (dw[i] == -1){
sw[i] = 1-ori;
}
}
res = tryCombination(sw);
if (res > k || res == -1){
//in this range
ind = lo;
hi = mid;
}
else{
lo = mid + 1;
}
}
dw[ind] = k;
sw[ind] = ori;
}
answer(sw,dw);
}
컴파일 시 표준 에러 (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... |