# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
835015 | AndrijaM | 동굴 (IOI13_cave) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "cave.h"
using namespace std;
const long long mod=1e9+7;
const long long maxn=2e5+10;
const long long logn=20;
long long di[8]={-1,-1,0,1,1,1,0,-1};
long long dj[8]={0,1,1,1,0,-1,-1,-1};
void exploreCave(int n)
{
vector<int>a(n,1);
vector<int>s(n,1);
bool vis[n];
memset(vis,0,sizeof vis);
vector<int>d(n);
int pr=-1;
for(int i=0;i<n;i++)
{
a=s;
int p=tryCombination(a);
if(p==pr)
{
int sw=0;
int l=0;
int r=n;
while(l<r)
{
int mid=l+(r-l)/2;
a=s;
for(int idx=mid;idx<n;idx++)
{
if(!vis[idx])
{
a[idx]=sw;
}
}
int pom=tryCombination(a);
if(pom>p)
{
l=mid+1;
}
else
{
r=mid;
}
}
vis[l]=1;
s[l]=sw;
d[i]=l;
}
else
{
int sw=1;
int l=0;
int r=n;
while(l<r)
{
int mid=l+(r-l)/2;
a=s;
for(int idx=mid;idx<n;idx++)
{
if(!vis[idx])
{
a[idx]=sw;
}
}
int pom=tryCombination(a);
if(pom>p)
{
l=mid+1;
}
else
{
r=mid;
}
}
vis[l]=1;
s[l]=sw;
d[i]=l;
}
}
answer(s,d);
}