# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
319039 | Genius1506 | 동굴 (IOI13_cave) | C++14 | 240 ms | 484 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#include "cave.h";
using namespace std;
const int mxN = 5002;
int S[mxN],good[mxN],vis[mxN],d[mxN];
void exploreCave(int N){
for(int i = 0; i < N; i++){
for(int j = 0; j < N; j++)
if(!vis[j])
S[j]=0;
int tmp = tryCombination(S);
int cur = tmp==-1||tmp>i?0:1;
int lb=0,rb=N-1,v=0;
while(lb<=rb){
int mb=(lb+rb)/2;
for(int j = 0; j <= mb; j++)
if(!vis[j])
S[j]=cur;
for(int j = mb+1; j < N; j++)
if(!vis[j])
S[j]=1-cur;
tmp = tryCombination(S);
if(tmp==-1||tmp>i){
rb=mb-1;
v=mb;
}
else
lb=mb+1;
}
vis[v]=1;
good[v]=cur;
d[v]=i;
}
answer(good,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... |