이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "cave.h"
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define pb push_back
#define all(x) x.begin(),x.end()
#define rall(x) x.rbegin(),x.rend()
//#define int ll
const ll mod=1e9+7,N=5005;
int c[N],d[N],t[N],cur[N];
void exploreCave(int n){
for(int i=0;i<n;i++){
c[i] = 1;
t[i] = 0;
}
int p = tryCombination(c);
if (p == -1) p = n;
for (int i = 0 ; i < n; i++){
int l = 0, r = n - 1;
while(l < r){
int m = (l + r) / 2;
for(int j = 0; j < n ; j++) cur[j] = c[j];
for(int j = l; j <= m; j++){
if(t[j] == 0) cur[j] = 0;
}
int k = tryCombination(cur);
if(k == -1) k = n;
if(p > i){
if(k == i) r = m;
else l = m + 1;
}else{
if(k > i) r = m;
else l = m + 1;
}
}
t[l] = 1;
d[l] = i;
if(p > i) c[l] = 1;
else c[l] = 0;
}
answer(c,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... |