이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "cave.h"
#include <bits/stdc++.h>
using namespace std;
#define ll int
#define sc second
#define ff first
#define pb push_back
#define in insert
void exploreCave(int N) {
int s[N+1],d[N+1],used[N+1],ans=0,sl=0,val=1,swp=0;
for (int i=1; i<=N; i++) {
d[i]=-1;
s[i]=1;
used[i] = 0;
}
while (ans!=-1) {
ans=tryCombination(s);
for (int i=sl; i<ans; i++) {
ll l=0,r=N-1;
while (l < r) {
ll mid = ( l + r + 1 ) / 2;
for (int j = mid; j < N; j ++ ) {
if (used[j] == 0) s[j] = swp;
}
ll cur = tryCombination(s);
for (int j = mid; j < N; j ++ ) {
if (used[j] == 0) s[j] = val;
}
if (cur != ans) {
r = mid - 1;
}
else l = mid;
}
used[l] = 1;
s [l] = val ;
d [l] = i;
}
if (val == 1) {
val = 0;
swp = 1;
}
else {
val = 1;
swp = 0;
}
sl = ans ;
}
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... |