# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
333019 | Cantfindme | Cave (IOI13_cave) | C++17 | 0 ms | 0 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
int currentd,high,low,mid;
int dstate,prevs,result;
void exploreCave(int N) {
int D[N], A[N];
bool known[N];
currentd = 0;
high = N;
low = -1;
memset(known,0,sizeof known);
for (int i =0;i<N;i++) D[i] = -1;
for (int i =0;i<N;i++) A[i] = 0;
result = tryCombination(A);
for (;currentd < N;currentd++) {
//1 is open 0 is close
if (result == -1 or result > currentd) {
prevs = 1;
}
while (high - low > 1) {
mid = (high+low)/2;
//< or <=?
for (int i = max(0,low);i<=mid;i++) {
if (known[i]) continue;
A[i] = !A[i];
}
result = tryCombination(A);
if (result == -1 or result > currentd) dstate = 1;
else dstate = 0;
if (dstate == prevs) low = mid;
else high = mid;
prevs = dstate;
}
known[high] = true;
if (!prevs) A[high] = !A[high];
D[high] = currentd;
}
answer(A,D);
}