# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
329056 | Farrius | 동굴 (IOI13_cave) | C++11 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
//#include "cave.h"
using namespace std;
bool open (int res, int i) {
return (res == -1 || res > i);
}
void exploreCave(int n) {
int ok[n], par[n];
vector<bool> skip(n, false);
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
if (skip[j]) continue;
ok[j] = 1;
}
int res = tryCombination(ok);
bool state = open(res, i);
int lo = 0, hi = n - 1;
int sol = hi;
while (lo <= hi) {
int mid = lo + (hi - lo)/2;
for (int j = lo; j <= mid; j++) {
if (skip[j]) continue;
ok[j] ^= 1;
}
int cur = tryCombination(ok);
bool cur_state = open(cur, i);
if (state != cur_state) {
hi = mid - 1;
sol = mid;
} else {
lo = mid + 1;
}
state = cur_state;
}
par[sol] = i;
state = open(tryCombination(ok), i);
if (!state) ok[sol] ^= 1;
skip[sol] = true;
}/*
for (auto x : ok) {
cout << x << ' ';
}
cout << '\n';
for (auto x : par) {
cout << x << ' ';
}
cout << '\n';*/
answer(ok, par);
}