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>
#include "cave.h"
using namespace std;
void exploreCave(int n) {
int state[n], pos[n];
bool good[n];
for(int loop = 0; loop < n; ++loop) {
good[loop] = false;
pos[loop] = -1;
}
for(int loop = 0; loop < n; ++loop) {
for(int looping = 0; looping < n; ++looping) {
if(!good[looping]) {
state[looping] = 1;
}
}
int ans = tryCombination(state);
if(ans < 0) {
ans = 2e9;
}
bool closed = (ans == loop);
int deb = 0, fin = n-1;
while(fin-deb > 0) {
int mid = (deb+fin)/2;
for(int looping = mid+1; looping <= fin; ++looping) {
if(!good[looping]) {
state[looping] = 1-state[looping];
}
}
int newAns = tryCombination(state);
if(newAns < 0) {
newAns = 2e9;
}
bool newClosed = (ans == loop);
if((newClosed && closed) || (!newClosed && !closed)) {
fin = mid;
}
else {
deb = mid+1;
}
}
good[deb] = true;
pos[deb] = loop;
}
answer(state, pos);
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |