# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
231415 | Tehillah | Cave (IOI13_cave) | C++14 | 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 "cave.h"
void exploreCave(int N) {
int S[N], D[N];
for(int i=0; i<N; ++i) S[i] = 1;
int ret, lst = 0;
while(1) {
ret = tryCombination(S);
int end = ret;
if(ret == -1) end = n;
int p = end;
REP(i, lst, N) {
//flip ith switch
S[i] = !S[i];
ret = tryCombination(S);
if(ret < end) {
D[i] = ret;
S[i] = !S[i];
--p;
} else if(ret == end) {
D[i] = ret;
--p;
} else
S[i] = !S[i];
if(p == 0) break;
}
lst = end;
if(end == n) break;
}
}