# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
99271 | long10024070 | 동굴 (IOI13_cave) | C++11 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#define Link "https://oj.uz/problem/view/IOI13_cave?fbclid=IwAR2HAQQWHxbplVnmFGboqMw4yr-N9sR3mRA2usvk6rTocr7u5QYaZIyHqxw"
#include <iostream>
#include <cstdio>
#define TASK "Cave"
using namespace std;
const int maxn = 5e3 + 10;
int n,Val[maxn];
bool s[maxn],True[maxn];
#include "cave.h"
void Fill(int l, int r, bool d)
{
for (int i=l;i<=r;++i)
if (Val[i] != -1)
s[i] = True[i];
else
s[i] = d;
}
void exploreCave(int n)
{
fill(Val,Val+n,-1);
for (int i=0;i<n;++i) {
Fill(0,n-1,0);
bool fl = (i == tryCombination(s));
int l = 0;
int r = n - 1;
while (l <= r) {
int m = (l + r) / 2;
Fill(1,n-1,fl^1);
Fill(l,m,fl);
Fill(m+1,r,fl^1);
if (tryCombination(s) == i)
l = m + 1;
else
r = m - 1;
}
True[l] = fl;
Val[l] = i;
}
answer(True,Val);
}