# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
648710 | tigar | 동굴 (IOI13_cave) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "cave.h"
#include <bits/stdc++.h>
void exploreCave(int N)
{
int combos[2][N];
int door[N];
bool check[N];
for(int i=0; i<N; i++){combos[0][i]=0; combos[1][i]=1; check[i]=false;}
for(int i=0; i<N; i++)
{
int bol=1;
int xx=tryCombination(combos[0]);
if(xx>i or xx==-1)bol=0;
int l=0, r=N, midd=N/2;
while(l<=r)
{
for(int j=0; ј<N; j++)
{
if((j>=midd or j<l) and !check[j])combos[bol][j]=abs(bol-1);
else if((j<midd and j>=l) and !check[j])combos[bol][j]=bol;
}
int br=tryCombination(combos[bol]);
if(l==r){check[l]=true; combos[0][l]=bol; combos[1][l]=bol; door[l]=i; break;}
else if(br>i or br==-1){r=midd-1; midd=(l+r)/2;}
else {l=midd+1; midd=(l+r)/2;}
}
}
return answer(combos[0], door);
}