이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "insects.h"
#include "bits/stdc++.h"
using namespace std;
vector<bool> in;
int tot_in;
int get(int n){
int res=0;
bool in[n]={};
for(int i=0;i<n;i++){
move_inside(i);
if(press_button()>1) move_outside(i);
else{
res++;
in[i]=true;
}
}
for(int i=0;i<n;i++) if(in[i]) move_outside(i);
return res;
}
bool check(int n, int x, int dif){
vector<int> aux;
for(int i=0;i<n;i++){
if(in[i]) continue;
move_inside(i);
if(press_button()>x) move_outside(i);
else{
in[i]=true;
tot_in++;
aux.push_back(i);
}
if(tot_in==x*dif) return true;
}
for(int i: aux){
in[i]=false;
tot_in--;
move_outside(i);
}
return false;
}
int min_cardinality(int n) {
int dif=get(n);
if(dif==1) return n;
in.assign(n,false);
tot_in=0;
int l=1,r=n/dif+1;
while(l+1<r){
int med=(l+r)/2;
if(check(n,med,dif)) l=med;
else r=med;
}
return l;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |