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