# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
370571 | Fysty | 동굴 (IOI13_cave) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "cave.h"
using namespace std;
typedef long long ll;
typedef pair<ll,ll> pll;
#define rep(i,n) for(int i=0;i<n;i++)
#define rep1(i,n) for(int i=1;i<n;i++)
#define F first
#define S second
#define pb push_back
int tryCombination(vector<int> S);
void answer(vector<int> S,vector<int> D);
bool vis[5005];
void exploreCave(int N)
{
int n=N;
vector<int> a(n,0),d(n),s(n);
rep(i,n)
{
bool x=0;
if(tryCombination(a)==i) x=1;
vector<int> tmp=a,pos;
if(x)
{
rep(i,n) if(!vis[i]) tmp[i]=1;
}
rep(i,n) if(!vis[i]) pos.pb(i);
int l=0,r=pos.size()-1;
while(l<r)
{
int mid=l+r>>1;
vector<int> tmp2=tmp;
for(int j=l;j<=mid;j++)
{
if(x) tmp2[pos[j]]=0;
else tmp2[pos[j]]=1;
}
if(tryCombination(tmp2)==i) r=mid;
else l=mid+1;
}
vis[l]=1;
s[l]=x;
d[l]=i;
a[l]=s[l];
}
answer(s,d);
}