이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "cave.h"
#include <bits/stdc++.h>
using namespace std;
void exploreCave(int N) {
/* ... */
int Key[N];
bool isSuccess[N];
for (int i = 0; i < N; i++) {
Key[i] = 0;
isSuccess[i] = 0;
}
int ansS[N], ansD[N];
for (int i = 0; i < N; i++) {
int value = tryCombination(Key);
if (value > i || value == -1) {
for (int j = 0; j < N; j++) {
if (!isSuccess[j]) {
Key[j] = Key[j] ^ 1;
}
}
}
for (int j = 0; j < N; j++) {
if (isSuccess[j]) {
continue;
}
Key[j] = Key[j] ^ 1;
value = tryCombination(Key);
if (value > i || value == -1) {
ansD[j] = i;
ansS[j] = Key[j];
isSuccess[j] = 1;
break;
}
Key[j] = Key[j] ^ 1;
}
}
answer(ansS, ansD);
}
# | 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... |