#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace std;
using namespace __gnu_pbds;
template<typename T> using Tree = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>;
typedef long long int ll;
typedef long double ld;
typedef pair<int,int> pii;
typedef pair<ll,ll> pll;
#define fastio ios_base::sync_with_stdio(false); cin.tie(NULL)
#define pb push_back
#define endl '\n'
#define sz(a) (int)a.size()
#define setbits(x) __builtin_popcountll(x)
#define ff first
#define ss second
#define conts continue
#define ceil2(x,y) ((x+y-1)/(y))
#define all(a) a.begin(), a.end()
#define rall(a) a.rbegin(), a.rend()
#define yes cout << "Yes" << endl
#define no cout << "No" << endl
#define rep(i,n) for(int i = 0; i < n; ++i)
#define rep1(i,n) for(int i = 1; i <= n; ++i)
#define rev(i,s,e) for(int i = s; i >= e; --i)
#define trav(i,a) for(auto &i : a)
template<typename T>
void amin(T &a, T b) {
a = min(a,b);
}
template<typename T>
void amax(T &a, T b) {
a = max(a,b);
}
#ifdef LOCAL
#include "debug.h"
#else
#define debug(x) 42
#endif
/*
*/
const int MOD = 1e9 + 7;
const int N = 1e5 + 5;
const int inf1 = int(1e9) + 5;
const ll inf2 = ll(1e18) + 5;
#include "insects.h"
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
int go(vector<int> uniq_guys, vector<int> pos){
shuffle(all(uniq_guys),rng);
int uniq = sz(uniq_guys);
if(uniq == 1){
return sz(pos);
}
int mid = uniq/2;
vector<int> uniq_l, uniq_r;
vector<int> pos_l, pos_r;
rep(ind,uniq){
int i = uniq_guys[ind];
if(ind < mid){
move_inside(i);
uniq_l.pb(i);
pos_l.pb(i);
}
else{
uniq_r.pb(i);
pos_r.pb(i);
}
}
set<int> st(all(uniq_guys));
trav(i,pos){
if(st.count(i)){
conts;
}
move_inside(i);
int res = press_button();
if(res == 2){
pos_l.pb(i);
}
else{
pos_r.pb(i);
}
move_outside(i);
}
trav(i,uniq_l){
move_outside(i);
}
int ans = min(go(uniq_l,pos_l), go(uniq_r,pos_r));
return ans;
}
int min_cardinality(int n) {
set<int> uniq_guys;
rep(i,n){
move_inside(i);
int res = press_button();
if(res >= 2){
move_outside(i);
}
else{
uniq_guys.insert(i);
}
}
trav(i,uniq_guys){
move_outside(i);
}
if(sz(uniq_guys) == 1){
return n;
}
if(sz(uniq_guys) == n){
return 1;
}
int cost1 = __lg(n/sz(uniq_guys)-1)+1;
int cost2 = __lg(sz(uniq_guys)-1)+1;
if(cost2 <= cost1){
vector<int> v1(all(uniq_guys));
vector<int> v2(n);
rep(i,n) v2[i] = i;
int ans = go(v1,v2);
return ans;
}
vector<bool> ignore(n);
auto ok = [&](int mid){
vector<int> good, bad;
rev(i,n-1,0){
if(ignore[i]) conts;
move_inside(i);
int res = press_button();
if(res > mid){
bad.pb(i);
move_outside(i);
}
else{
good.pb(i);
}
}
trav(i,good){
move_outside(i);
}
int curr_uniq = 0;
trav(i,bad){
curr_uniq += uniq_guys.count(i);
}
if(curr_uniq >= sz(uniq_guys)) return false;
trav(i,bad){
if(uniq_guys.count(i)){
uniq_guys.erase(i);
}
ignore[i] = 1;
}
return true;
};
int l = 1, r = n/sz(uniq_guys)-1;
int ans = n/sz(uniq_guys);
while(l <= r){
int mid = (l+r) >> 1;
// is min <= mid?
if(ok(mid)){
ans = mid;
r = mid-1;
}
else{
l = mid+1;
}
}
return ans;
}
# |
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 |
Correct |
1 ms |
344 KB |
Output is correct |
5 |
Correct |
1 ms |
344 KB |
Output is correct |
6 |
Correct |
1 ms |
344 KB |
Output is correct |
7 |
Correct |
2 ms |
600 KB |
Output is correct |
8 |
Correct |
5 ms |
856 KB |
Output is correct |
9 |
Correct |
5 ms |
600 KB |
Output is correct |
10 |
Correct |
2 ms |
344 KB |
Output is correct |
11 |
Correct |
1 ms |
344 KB |
Output is correct |
12 |
Correct |
4 ms |
600 KB |
Output is correct |
13 |
Correct |
5 ms |
856 KB |
Output is correct |
14 |
Correct |
3 ms |
856 KB |
Output is correct |
15 |
Correct |
3 ms |
692 KB |
Output is correct |
16 |
Correct |
4 ms |
600 KB |
Output is correct |
17 |
Correct |
4 ms |
444 KB |
Output is correct |
18 |
Correct |
5 ms |
856 KB |
Output is correct |
19 |
Correct |
3 ms |
600 KB |
Output is correct |
20 |
Correct |
2 ms |
600 KB |
Output is correct |
21 |
Correct |
2 ms |
344 KB |
Output is correct |
22 |
Correct |
1 ms |
344 KB |
Output is correct |
# |
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 |
Correct |
1 ms |
344 KB |
Output is correct |
5 |
Correct |
1 ms |
344 KB |
Output is correct |
6 |
Correct |
1 ms |
344 KB |
Output is correct |
7 |
Correct |
2 ms |
600 KB |
Output is correct |
8 |
Correct |
5 ms |
856 KB |
Output is correct |
9 |
Correct |
5 ms |
600 KB |
Output is correct |
10 |
Correct |
2 ms |
344 KB |
Output is correct |
11 |
Correct |
1 ms |
344 KB |
Output is correct |
12 |
Correct |
4 ms |
600 KB |
Output is correct |
13 |
Correct |
5 ms |
856 KB |
Output is correct |
14 |
Correct |
3 ms |
856 KB |
Output is correct |
15 |
Correct |
3 ms |
692 KB |
Output is correct |
16 |
Correct |
4 ms |
600 KB |
Output is correct |
17 |
Correct |
4 ms |
444 KB |
Output is correct |
18 |
Correct |
5 ms |
856 KB |
Output is correct |
19 |
Correct |
3 ms |
600 KB |
Output is correct |
20 |
Correct |
2 ms |
600 KB |
Output is correct |
21 |
Correct |
2 ms |
344 KB |
Output is correct |
22 |
Correct |
1 ms |
344 KB |
Output is correct |
23 |
Correct |
4 ms |
344 KB |
Output is correct |
24 |
Correct |
4 ms |
864 KB |
Output is correct |
25 |
Correct |
23 ms |
708 KB |
Output is correct |
26 |
Correct |
30 ms |
704 KB |
Output is correct |
27 |
Correct |
10 ms |
600 KB |
Output is correct |
28 |
Correct |
5 ms |
856 KB |
Output is correct |
29 |
Correct |
15 ms |
948 KB |
Output is correct |
30 |
Correct |
27 ms |
940 KB |
Output is correct |
31 |
Correct |
18 ms |
952 KB |
Output is correct |
32 |
Correct |
16 ms |
936 KB |
Output is correct |
33 |
Correct |
28 ms |
944 KB |
Output is correct |
34 |
Correct |
22 ms |
952 KB |
Output is correct |
35 |
Correct |
22 ms |
876 KB |
Output is correct |
36 |
Correct |
24 ms |
1192 KB |
Output is correct |
37 |
Correct |
21 ms |
680 KB |
Output is correct |
38 |
Correct |
12 ms |
700 KB |
Output is correct |
39 |
Correct |
12 ms |
960 KB |
Output is correct |
40 |
Correct |
10 ms |
696 KB |
Output is correct |
41 |
Correct |
5 ms |
600 KB |
Output is correct |
# |
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 |
3 ms |
344 KB |
Output is correct |
4 |
Correct |
0 ms |
344 KB |
Output is correct |
5 |
Correct |
0 ms |
344 KB |
Output is correct |
6 |
Correct |
1 ms |
344 KB |
Output is correct |
7 |
Correct |
10 ms |
344 KB |
Output is correct |
8 |
Correct |
9 ms |
1368 KB |
Output is correct |
9 |
Partially correct |
59 ms |
1192 KB |
Output is partially correct |
10 |
Partially correct |
62 ms |
1148 KB |
Output is partially correct |
11 |
Correct |
23 ms |
848 KB |
Output is correct |
12 |
Correct |
21 ms |
880 KB |
Output is correct |
13 |
Partially correct |
43 ms |
728 KB |
Output is partially correct |
14 |
Partially correct |
56 ms |
852 KB |
Output is partially correct |
15 |
Partially correct |
34 ms |
848 KB |
Output is partially correct |
16 |
Partially correct |
36 ms |
716 KB |
Output is partially correct |
17 |
Partially correct |
45 ms |
892 KB |
Output is partially correct |
18 |
Partially correct |
47 ms |
856 KB |
Output is partially correct |
19 |
Partially correct |
43 ms |
1624 KB |
Output is partially correct |
20 |
Partially correct |
69 ms |
952 KB |
Output is partially correct |
21 |
Partially correct |
69 ms |
1188 KB |
Output is partially correct |
22 |
Partially correct |
35 ms |
1188 KB |
Output is partially correct |
23 |
Correct |
27 ms |
852 KB |
Output is correct |
24 |
Correct |
30 ms |
856 KB |
Output is correct |
25 |
Correct |
19 ms |
972 KB |
Output is correct |
26 |
Correct |
8 ms |
712 KB |
Output is correct |
27 |
Partially correct |
54 ms |
920 KB |
Output is partially correct |
28 |
Partially correct |
72 ms |
936 KB |
Output is partially correct |
29 |
Partially correct |
51 ms |
1180 KB |
Output is partially correct |
30 |
Partially correct |
62 ms |
976 KB |
Output is partially correct |
31 |
Partially correct |
68 ms |
728 KB |
Output is partially correct |
32 |
Partially correct |
70 ms |
944 KB |
Output is partially correct |
33 |
Correct |
31 ms |
940 KB |
Output is correct |
34 |
Correct |
25 ms |
932 KB |
Output is correct |
35 |
Partially correct |
64 ms |
1128 KB |
Output is partially correct |
36 |
Partially correct |
65 ms |
892 KB |
Output is partially correct |
37 |
Partially correct |
67 ms |
968 KB |
Output is partially correct |
38 |
Partially correct |
70 ms |
712 KB |
Output is partially correct |
39 |
Partially correct |
52 ms |
1188 KB |
Output is partially correct |
40 |
Partially correct |
52 ms |
1192 KB |
Output is partially correct |
41 |
Partially correct |
69 ms |
980 KB |
Output is partially correct |
42 |
Partially correct |
61 ms |
1396 KB |
Output is partially correct |
43 |
Partially correct |
13 ms |
600 KB |
Output is partially correct |
44 |
Partially correct |
43 ms |
856 KB |
Output is partially correct |
45 |
Correct |
18 ms |
848 KB |
Output is correct |
46 |
Correct |
19 ms |
1468 KB |
Output is correct |
47 |
Correct |
21 ms |
728 KB |
Output is correct |
48 |
Correct |
23 ms |
1100 KB |
Output is correct |