# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
135608 | mirbek01 | 동굴 (IOI13_cave) | C++11 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "cave.h"
#include "grader.cpp"
#include <bits/stdc++.h>
using namespace std;
const int MAXN = 5e3 + 2;
int f[MAXN], s[MAXN], ar[MAXN], pos[MAXN];
void exploreCave(int N) {
for(int i = 0; i < N; i ++){
for(int j = 0; j < N; j ++)
ar[j] = 0;
for(int j = 0; j < i; j ++){
ar[ pos[j] ] = f[ pos[j] ];
}
int ret = tryCombination(ar);
vector <int> v;
for(int j = 0; j < N; j ++){
if(!s[j])
v.push_back(j);
}
int correct = 0;
if(ret == i)
correct = 1;
int lo = 0, hi = (int)v.size() - 1;
while(lo <= hi){
int md = (lo + hi) >> 1;
if(!correct){
for(int j = md + 1; j < (int)v.size(); j ++)
ar[ v[j] ] = 0;
for(int j = 0; j <= md; j ++)
ar[ v[j] ] = 1;
} else {
for(int j = md + 1; j < (int)v.size(); j ++)
ar[ v[j] ] = 1;
for(int j = 0; j <= md; j ++)
ar[ v[j] ] = 0;
}
ret = tryCombination(ar);
if(ret == i){
hi = md - 1;
} else {
lo = md + 1;
}
}
lo = v[hi + 1];
f[lo] = correct;
s[lo] = i;
pos[i] = lo;
}
answer(f, s);
}