이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#include "cave.h"
void exploreCave(int n) {
int S[n];
int D[n];
int Sol[n];
bool fet[n];
for (int i = 0; i < n; i++){
S[i] = 0;
D[i] = -1;
Sol[i] = -1;
fet[i] = false;
}
if (tryCombination(S) == -1){
for (int i = 0; i < n; i++){
S[i] = 1;
D[i] = tryCombination(S);
S[i] = 0;
}
}
else{
for (int i = 0; i < n; i++){
int hola;
if (tryCombination(S) == i) hola = 1;
else hola = 0;
int l = 0, r = n-1;
while (l < r) {
int m = (l+r)/2;
for (int j = 0; j < n; j++) {
if (fet[j]) Sol[j] = S[j];
else Sol[j] = 0;
}
for (int j = l; j <= m; j++){
if (not fet[j]){
Sol[j] = 1;
}
}
if (hola == 1){
if (tryCombination(Sol) == i) l = m+1;
else r = m;
}
else{
if (tryCombination(Sol) == i) r = m;
else l = m+1;
}
}
S[r] = hola;
fet[r] = true;
D[r] = i;
}
}
answer(S, D);
}
# | 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... |