이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "cave.h"
#include <bits/stdc++.h>
using namespace std;
void exploreCave(int N) {
int n = N;
int confirmed[n];
int test[n];
int correspondence[n];
for (int i = 0; i < n; i++) {
test[i] = 0;
correspondence[i] = i;
confirmed[i] = -1;
}
ios_base::sync_with_stdio(false);
cin.tie(NULL);
for (int i = 0; i<n; i++) {
if (confirmed[i] != -1) test[i] = confirmed[i];
else test[i] = 0;
}
if (tryCombination(test) == -1) {
for (int to_try = 0; to_try<n; to_try++) {
for (int i = 0; i<n; i++) {
if (i == to_try) test[i] = 1;
else test[i] = 0;
}
confirmed[to_try] = tryCombination(test);
}
for (int i = 0; i<n; i++) {
test[i] = 0;
}
answer(test, confirmed);
} else {
for(int to_try = 0; to_try<n; to_try++) {
int certo = 0;
for (int i = 0; i<n; i++) {
if (confirmed[i] != -1) test[i] = confirmed[i];
else test[i] = 0;
}
if (tryCombination(test) == to_try) certo = 1;
confirmed[to_try] = certo;
}
answer(confirmed, correspondence);
}
}
# | 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... |