#include "insects.h"
#include <bits/stdc++.h>
using namespace std;
#define fi first
#define se second
#define pb push_back
#define all(x) x.begin(), x.end()
#define allr(x) x.rbegin(), x.rend()
#define mp make_pair
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
typedef complex<double> cd;
int min_cardinality(int N) {
queue<int> q;
vector<int> aux;
int tipos=0;
for(int i=0;i<N;i++){
move_inside(i);
int curr=press_button();
if(curr>=2) move_outside(i);
else{
tipos++;
q.push(i);
aux.pb(i);
}
}
if(tipos==1) return N;
while(!q.empty()){
move_outside(q.front());
q.pop();
}
if(tipos<=(8*N)/2000){
int ans=N;
for(auto u : aux){
int ret=1;
move_inside(u);
for(int i=0;i<N;i++){
if(i==u) continue;
move_inside(i);
int at=press_button();
if(at==2) ret++;
move_outside(i);
}
move_outside(u);
ans=min(ans, ret);
}
return ans;
}
int low=1, high=(N/tipos)-1, best=N/tipos;
while(low<=high){
int mid=(low+high)>>1;
while(!q.empty()){
move_outside(q.front());
q.pop();
}
int qnt=0;
for(int i=0;i<N;i++){
move_inside(i);
int curr=press_button();
if(curr>mid) move_outside(i);
else{
qnt++;
q.push(i);
}
}
if(qnt/mid==tipos){
best=mid;
low=mid+1;
}
else high=mid-1;
}
return best;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
344 KB |
Output is correct |
2 |
Correct |
0 ms |
344 KB |
Output is correct |
3 |
Correct |
0 ms |
344 KB |
Output is correct |
4 |
Incorrect |
0 ms |
344 KB |
Wrong answer. |
5 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
344 KB |
Output is correct |
2 |
Correct |
0 ms |
344 KB |
Output is correct |
3 |
Correct |
0 ms |
344 KB |
Output is correct |
4 |
Incorrect |
0 ms |
344 KB |
Wrong answer. |
5 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Correct |
0 ms |
344 KB |
Output is correct |
3 |
Correct |
1 ms |
344 KB |
Output is correct |
4 |
Correct |
1 ms |
344 KB |
Output is correct |
5 |
Correct |
0 ms |
344 KB |
Output is correct |
6 |
Partially correct |
1 ms |
344 KB |
Output is partially correct |
7 |
Correct |
15 ms |
344 KB |
Output is correct |
8 |
Correct |
13 ms |
452 KB |
Output is correct |
9 |
Incorrect |
87 ms |
848 KB |
Wrong answer. |
10 |
Halted |
0 ms |
0 KB |
- |