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