# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
890063 | presko | 동굴 (IOI13_cave) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "cave.h"
#include "grader.c"
bool found[6000];
int state[6000];
int swtch[6000];
bool start[6000];
int s[6000];
void fill(int ind,int n)
{
int l=0,r=n-1;
while(r!=l)
{
int mid=(l+r+1)/2;
for(int i=0;i<n;i++)
{
if(found[i]){s[i]=state[i];continue;}
if(i<mid)s[i]=1;
else s[i]=0;
}
int ans=tryCombination(s);
bool sta=0;
if(ans>ind)sta=1;
if(sta!=start[ind])r=mid-1;
else l=mid;
}
swtch[l]=ind;
found[l]=1;
state[l]=s[l];
}
void exploreCave(int N)
{
int res=tryCombination(s);
for(int i=0;i<res;i++)start[i]=1;
for(int i=0;i<N;i++)fill(i,N);
answer(state,swtch);
}