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