이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "cave.h"
#include<bits/stdc++.h>
using namespace std;
void exploreCave(int N){
int pos[N],ans[N];
vector<bool> vis(N);
memset(pos,0,sizeof(pos));
for(int i=0; i<N; i++){
int tmp=0,p=0;
if(tryCombination(pos)==i) tmp=1;
int l=0,r=N-1;
while(l<=r){
int m=l+(r-l)/2;
for(int z=0; z<=m; z++){
if(!vis[z]) pos[z]^=1;
}
if(tmp){
if(tryCombination(pos)==i) l=m+1,p=pos[m]^1;
else r=m-1,tmp^=1,p=pos[m];
}else{
if(tryCombination(pos)==i) r=m-1,p=pos[m]^1,tmp^=1;
else l=m+1,p=pos[m];
}
}
l--;
vis[l]=1;
ans[l]=i;
pos[l]=p;
}
answer(pos,ans);
}
# | 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... |