이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "cave.h"
#include <bits/stdc++.h>
using namespace std;
const int N = 5e3+5;
int n;
int S[N], D[N];
bool chk[N];
void exploreCave(int N) {
n = N;
fill_n(S, N, 1);
for(int i = 0; i < n; i++) {
int init = tryCombination(S);
bool t = (init == -1 || init > i);
int l = 0, r = n-1;
while(l < r) {
int m = (l + r) >> 1;
for(int j = l; j <= m; j++) if(!chk[j]) S[j] ^= 1;
int ret = tryCombination(S);
bool now = (ret == -1 || ret > i);
if(t ^ now) r = m, t = now;
else l = m+1;
}
init = tryCombination(S);
if(init != -1 && init <= i) S[r] ^= 1;
D[r] = i, chk[r] = true;
}
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... |