This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "insects.h"
#include <bits/stdc++.h>
using namespace std;
#define pb push_back
#define ar array
#define all(x) x.begin(), x.end()
template <class F, class S>
bool chmin(F &u, const S &v){
bool flag = false;
if ( u > v ){
u = v; flag |= true;
}
return flag;
}
const int C = 100;
int min_cardinality(int n) {
vector <int> p;
for ( int i = 0; i < n; i++ ){
move_inside(i);
if ( press_button() == 1 ){
p.pb(i);
} else{
move_outside(i);
}
}
int k = (int)p.size();
for ( auto &x: p ){
move_outside(x);
} p.clear();
auto ok = [&](int m){
int cnt = 0;
for ( int i = 0; i < n; i++ ){
move_inside(i);
if ( press_button() > m ){
move_outside(i);
} else cnt += 1;
}
return cnt == k * m;
};
int l = 1, r = n + 1;
while ( l + 1 < r ){
int m = (l + r) / 2;
if ( ok(m) ) l = m;
else r = m;
}
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... |