# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
456172 | fuad27 | 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"
#include<bits/stdc++.h>
using namespace std;
void exploreCave(int N) {
int S[N+1];
int test[N+1];
for(int i = 0 ; i < N ; ++i) S[i] = 0, D[i] = i;
int val = tryCombination(S);
if(val == -1)
{
for(int i = 0 ; i < N ; ++i){
S[i] = 1;
test[i] = tryCombination(S);
S[i] = 0;
}
}
else{
while(val != -1) {
S[val] = !S[val];
val = tryCombination(S);
}
}
}
answer(S, D);
}