#include "cave.h"
#include <algorithm>
void exploreCave(int N) {
int S[N] = {};
int D[N];
int prev = tryCombination(S);
for(int i = 0; i < N; i++) {
S[i] = !S[i];
int x = tryCombination(S);
if(x == -1) {
break;
} else {
if(x < prev) {
S[i] = !S[i];
}
}
}
for(int i = 0; i < N; i++) {
S[i] = !S[i];
int x = tryCombination(S);
D[i] = x;
S[i] = !S[i];
}
answer(S,D);
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
344 KB |
Answer is wrong |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
348 KB |
Answer is wrong |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
348 KB |
Answer is wrong |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
348 KB |
Answer is wrong |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
344 KB |
Answer is wrong |
2 |
Halted |
0 ms |
0 KB |
- |