# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1080767 | jcelin | 동굴 (IOI13_cave) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "cave.h"
using namespace std;
typedef long long ll;
typedef pair<int,int> ii;
typedef pair<ll,ll> pll;
typedef vector<int> vi;
typedef vector<ii> vii;
typedef vector<ll> vll;
typedef vector<pll> vpll;
#define PB push_back
#define PF push_front
#define PPB pop_back
#define PPF pop_front
#define X first
#define Y second
#define MP make_pair
#define all(x) (x).begin(), (x).end()
const int mod = 1e9 + 7; //998244353;
const int inf = 1e9 + 7;
const ll INF = 1e18 + 7;
const int logo = 20;
const int MAXN = 1e6 + 7;
const int off = 1 << logo;
const int trsz = off << 1;
const int dx[] = {1, -1, 0, 0};
const int dy[] = {0, 0, -1, 1};
vi s, d;
void exploreCave(int n){
s.resize(n);
d.resize(n, -1);
int lst = tryCombination(s);
for(int i=0; i<n; i++){
int lo = 0, hi = n - 1;
while(lo < hi){
int mid = (lo + hi) / 2;
for(int j=lo; j<=mid; j++) if(d[j] == -1) s[j] ^= 1;
int vl = tryCombination(s);
if((vl != i and lst != i) or (vl == i and lst == i)) lo = mid + 1;
else hi = mid;
lst = vl;
}
d[lo] = i;
if(lst == i) s[lo] ^= 1;
lst = tryCombination(s);
}
answer(s, d);
}