이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include"cave.h"
using namespace std;
void exploreCave(int n) {
int fixed[n];
memset(fixed,-1,sizeof(fixed));
int posi[n];
for (int i=0;i<n;i++){
int s[n];
memset(s,0,sizeof(s));
for (int j=0;j<n;j++){
if (fixed[j]!=-1) s[j]=fixed[j];
}
int ori=0;
if (tryCombination(s)!=i) ori=1;
int mini=0,maxi=n;
while (mini+1<maxi){
int middle=(mini+maxi)/2;
for (int j=0;j<n;j++){
s[j]=ori;
}
for (int j=mini;j<middle;j++){
s[j]=1-ori;
}
for (int j=0;j<n;j++){
if (fixed[j]!=-1){
s[j]=fixed[j];
}
}
if (tryCombination(s)!=i){
maxi=middle;
}
else {
mini=middle;
}
}
posi[mini]=i;
fixed[mini]=1-ori;
}
answer(fixed,posi);
}
# | 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... |