#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;
}
struct Dsu{
vector <int> fa;
int n;
Dsu(int n) : n(n) {
fa.resize(n);
iota(all(fa), 0);
}
int get(int x){
return fa[x] ^ x ? fa[x] = get(fa[x]) : x;
}
bool merge(int u, int v){
u = get(u), v = get(v);
if ( u == v ) return false;
fa[v] = u;
return true;
}
};
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);
}
}
if ( (int)p.size() >= 25 && false ){
int cnt = 0;
vector <int> us(n);
while ( !*min_element(all(us)) ){
cnt += 1;
int lst = (int)p.size();
for ( auto &j: p ){
us[j] = 1;
move_outside(j);
} p.clear();
for ( int i = 0; i < n; i++ ){
if ( us[i] ) continue;
move_inside(i);
if ( press_button() == 1 ){
p.pb(i);
} else{
move_outside(i);
}
}
if ( (int)p.size() != lst ){
break;
}
}
return cnt;
} else{
vector <int> us(n);
for ( auto &j: p ){
us[j] = 1;
move_outside(j);
} p.clear();
vector <int> f;
while ( !*min_element(all(us)) ){
int cnt = 0;
for ( int i = 0; i < n; i++ ){
if ( us[i] ) continue;
move_inside(i);
if ( press_button() == cnt + 1 ){
cnt += 1; p.pb(i);
} else{
move_outside(i);
}
}
f.pb(cnt);
for ( auto &x: p ){
us[x] = 1;
move_outside(x);
} p.clear();
}
return *min_element(all(f));
}
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
344 KB |
Wrong answer. |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
344 KB |
Wrong answer. |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
344 KB |
Output is correct |
2 |
Incorrect |
0 ms |
344 KB |
Wrong answer. |
3 |
Halted |
0 ms |
0 KB |
- |