이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
#include "cave.h"
using namespace std;
using namespace __gnu_pbds;
typedef tree<int,null_type,less<int>,rb_tree_tag,tree_order_statistics_node_update> ordered_set;
void exploreCave(int N) { // -1
int config[N],perm[N];
ordered_set idx;
for(int i=0;i<N;++i) idx.insert(i);
for(int i=0;i<N;++i) {
bool on=1;
for(int x:idx) config[x]=1;
if(tryCombination(config)==i) on=0;
for(int x:idx) config[x]=!on;
int st=0,sz=(N-i)/2,pst=0,psz=N-i,sw;
while(sz>0) {
sw=st;
for(int j=st;j<st+sz;++j) config[*idx.find_by_order(j)]=on;
if(tryCombination(config)==i) {
pst=st;
st=st+sz;
int tsz=sz;
sz=(psz-sz)/2;
psz=tsz;
} else {
sz/=2;
sw=st;
}
for(int j=st;j<pst+psz;++j) config[*idx.find_by_order(j)]=!on;
}
perm[sw]=i;
config[sw]=on;
idx.erase(sw);
}
answer(perm,config);
}
# | 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... |