# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
992898 | Rifal | 동굴 (IOI13_cave) | C++14 | 3 ms | 572 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "cave.h"
#include <bits/stdc++.h>
using namespace std;
void exploreCave(int N) {
int now[N] = {};
int S[N];
for(int i = 0; i < N; i++) S[i] = -1;
int D[N] = {};
for(int i = 0; i < N; i++) {
for(int j = 0; j < N; j++) {
if(S[j] == -1) now[j] = 0;
else now[j] = S[j];
}
int l = 0, r = N-1;
int x = tryCombination(now);
for(int j = 0; j < N; j++) {
if(S[j] == -1) now[j] = -1;
else now[j] = S[j];
}
if(i == x) {
while(l <= r) {
int mid = (l+r)/2;
vector<int> v;
for(int j = l; j <= mid; j++) {
if(now[j] == -1) {
v.push_back(j);
now[j] = 1;
}
}
x = tryCombination(now);
if(x == i) {
l = mid+1;
}
else {
r = mid;
}
for(int j = 0; j < v.size(); j++) {
now[v[j]] = -1;
}
}
S[l] = 0;
D[i] = l;
}
else {
while(l <= r) {
int mid = (l+r)/2;
vector<int> v;
for(int j = l; j <= mid; j++) {
if(now[j] == -1) {
v.push_back(j);
now[j] = 1;
}
}
x = tryCombination(now);
if(x != i) {
l = mid+1;
}
else {
r = mid;
}
for(int j = 0; j < v.size(); j++) {
now[v[j]] = -1;
}
}
S[l] = 1;
D[i] = l;
}
}
answer(S,D);
}
컴파일 시 표준 에러 (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... |