이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "cave.h"
void exploreCave(int n)
{
int S[n], D[n];
for(int i = 0; i < n; i++)
{
S[n] = 0;
D[n] = -1;
}
int cur, prev;
for(int i = 0; i < n; i++)
{
cur = tryCombination(S);
if(cur > i || cur == -1)
prev = 1;
else
prev = 0;
int low = 0;
int high = n - 1;
while(high - low > 1)
{
int middle = (low + high) / 2;
for(int j = low; j <= middle; j++)
{
if(D[j] == -1)
{
if(S[j] == 0)
S[j] = 1;
else
S[j] = 0;
}
}
int cur = tryCombination(S);
if(cur > i || cur == -1)
cur = 1;
else
cur = 0;
if(cur == prev)
low = middle;
else
high = middle;
prev = cur;
}
if(D[low] == -1)
{
if(S[low] == 0)
S[low] = 1;
else
S[low] = 0;
cur = tryCombination(S);
if(cur == prev)
{
D[high] = i;
if(cur == i)
{
if(S[high] == 0)
S[high] = 1;
else
S[high] = 0;
}
}
else
{
D[low] = i;
if(cur == i)
{
if(S[low] == 0)
S[low] = 1;
else
S[low] = 0;
}
}
}
}
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... |