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