이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "cave.h"
#include <bits/stdc++.h>
#define ll long long
#define F first
#define S second
#define pii pair<int,int>
const int mod = 1e9 + 7;
const int mxN = 2e5 + 5;
using namespace std;
int tryCombination(int S[]);
void answer(int S[], int D[]);
void exploreCave(int N);
void exploreCave(int N) {
const int sz = N;
int s[sz],d[sz];
int gv[sz];
memset(s,-1,sizeof s);
for(int i = 0;i < N;i++){
bool chk = 0;
for(int j = 0;j < N;j++){
gv[j] = s[j] != -1 ? s[j] : chk;
}
if(tryCombination(gv) == i) chk = 1;
int l = 0,r = N - 1;
while(l < r){
int md = (l + r) / 2;
for(int j = 0;j < N;j++) gv[j] = s[j] != -1 ? s[j] : !chk;
for(int j = l;j <= md;j++) gv[j] = s[j] != -1 ? s[j] : chk;
if(tryCombination(gv) == i){
l = md + 1;
}else{
r = md;
}
}
s[l] = chk;
d[l] = i;
}
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... |