#include <bits/stdc++.h>
#include "insects.h"
using namespace std;
using ll = long long;
int in[2020];
int min_cardinality(int n) {
int type = 0;
for (int i = 0;i < n;i++) {
move_inside(i);
if (press_button() == 2) {
move_outside(i);
}
else in[i] = 1, type++;
}
if (type == 1) return n;
if (type == n) return 1;
if (type > n / 2) return 1;
int mxans = n / type;
int now = 1;
int C = sqrt(mxans) + 5;
while (now + C <= mxans) {
now += C;
int cnt = 0;
for (int i = 0;i < n;i++) {
if (in[i]) continue;
move_inside(i);
if (press_button() > now) {
move_outside(i);
}
else in[i] = now, cnt++;
}
if (cnt < C * type) {
for (int i = 0;i < n;i++) {
if (in[i] == now) move_outside(i), in[i] = 0;
}
now -= C;
while (1) {
now++;
int cnt = 0;
for (int i = 0;i < n;i++) {
if (in[i]) continue;
move_inside(i);
if (press_button() > now) {
move_outside(i);
}
else in[i] = now, cnt++;
}
if (cnt != type) return now - 1;
}
}
}
while (now <= mxans) {
now++;
int cnt = 0;
for (int i = 0;i < n;i++) {
if (in[i]) continue;
move_inside(i);
if (press_button() > now) {
move_outside(i);
}
else in[i] = now, cnt++;
}
if (cnt != type) return now - 1;
}
// n , n , n
/*
ans <= n / type
ans <= n - mx
*/
return -1;
}
# |
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 |
0 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 |
1 ms |
344 KB |
Output is correct |
8 |
Correct |
3 ms |
344 KB |
Output is correct |
9 |
Correct |
6 ms |
344 KB |
Output is correct |
10 |
Correct |
3 ms |
344 KB |
Output is correct |
11 |
Correct |
1 ms |
344 KB |
Output is correct |
12 |
Correct |
3 ms |
344 KB |
Output is correct |
13 |
Correct |
2 ms |
344 KB |
Output is correct |
14 |
Correct |
7 ms |
344 KB |
Output is correct |
15 |
Correct |
4 ms |
344 KB |
Output is correct |
16 |
Correct |
5 ms |
344 KB |
Output is correct |
17 |
Correct |
2 ms |
344 KB |
Output is correct |
18 |
Correct |
3 ms |
344 KB |
Output is correct |
19 |
Correct |
4 ms |
344 KB |
Output is correct |
20 |
Correct |
2 ms |
344 KB |
Output is correct |
21 |
Correct |
1 ms |
344 KB |
Output is correct |
22 |
Correct |
1 ms |
344 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 |
0 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 |
1 ms |
344 KB |
Output is correct |
8 |
Correct |
3 ms |
344 KB |
Output is correct |
9 |
Correct |
6 ms |
344 KB |
Output is correct |
10 |
Correct |
3 ms |
344 KB |
Output is correct |
11 |
Correct |
1 ms |
344 KB |
Output is correct |
12 |
Correct |
3 ms |
344 KB |
Output is correct |
13 |
Correct |
2 ms |
344 KB |
Output is correct |
14 |
Correct |
7 ms |
344 KB |
Output is correct |
15 |
Correct |
4 ms |
344 KB |
Output is correct |
16 |
Correct |
5 ms |
344 KB |
Output is correct |
17 |
Correct |
2 ms |
344 KB |
Output is correct |
18 |
Correct |
3 ms |
344 KB |
Output is correct |
19 |
Correct |
4 ms |
344 KB |
Output is correct |
20 |
Correct |
2 ms |
344 KB |
Output is correct |
21 |
Correct |
1 ms |
344 KB |
Output is correct |
22 |
Correct |
1 ms |
344 KB |
Output is correct |
23 |
Correct |
5 ms |
344 KB |
Output is correct |
24 |
Correct |
5 ms |
600 KB |
Output is correct |
25 |
Correct |
13 ms |
344 KB |
Output is correct |
26 |
Correct |
30 ms |
444 KB |
Output is correct |
27 |
Correct |
14 ms |
344 KB |
Output is correct |
28 |
Correct |
4 ms |
600 KB |
Output is correct |
29 |
Correct |
18 ms |
600 KB |
Output is correct |
30 |
Correct |
14 ms |
344 KB |
Output is correct |
31 |
Correct |
36 ms |
420 KB |
Output is correct |
32 |
Correct |
42 ms |
416 KB |
Output is correct |
33 |
Correct |
29 ms |
420 KB |
Output is correct |
34 |
Correct |
22 ms |
592 KB |
Output is correct |
35 |
Correct |
28 ms |
596 KB |
Output is correct |
36 |
Correct |
42 ms |
432 KB |
Output is correct |
37 |
Correct |
17 ms |
600 KB |
Output is correct |
38 |
Correct |
20 ms |
600 KB |
Output is correct |
39 |
Correct |
7 ms |
600 KB |
Output is correct |
40 |
Correct |
6 ms |
600 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 |
0 ms |
344 KB |
Output is correct |
4 |
Correct |
0 ms |
344 KB |
Output is correct |
5 |
Correct |
1 ms |
344 KB |
Output is correct |
6 |
Correct |
0 ms |
344 KB |
Output is correct |
7 |
Correct |
12 ms |
344 KB |
Output is correct |
8 |
Correct |
7 ms |
444 KB |
Output is correct |
9 |
Partially correct |
38 ms |
432 KB |
Output is partially correct |
10 |
Partially correct |
45 ms |
412 KB |
Output is partially correct |
11 |
Correct |
27 ms |
344 KB |
Output is correct |
12 |
Correct |
12 ms |
436 KB |
Output is correct |
13 |
Partially correct |
41 ms |
436 KB |
Output is partially correct |
14 |
Correct |
26 ms |
600 KB |
Output is correct |
15 |
Partially correct |
112 ms |
416 KB |
Output is partially correct |
16 |
Partially correct |
109 ms |
412 KB |
Output is partially correct |
17 |
Partially correct |
75 ms |
412 KB |
Output is partially correct |
18 |
Partially correct |
62 ms |
412 KB |
Output is partially correct |
19 |
Partially correct |
63 ms |
416 KB |
Output is partially correct |
20 |
Partially correct |
60 ms |
420 KB |
Output is partially correct |
21 |
Partially correct |
97 ms |
592 KB |
Output is partially correct |
22 |
Correct |
28 ms |
600 KB |
Output is correct |
23 |
Correct |
31 ms |
600 KB |
Output is correct |
24 |
Correct |
17 ms |
600 KB |
Output is correct |
25 |
Correct |
15 ms |
600 KB |
Output is correct |
26 |
Correct |
9 ms |
756 KB |
Output is correct |
27 |
Partially correct |
28 ms |
436 KB |
Output is partially correct |
28 |
Partially correct |
28 ms |
412 KB |
Output is partially correct |
29 |
Partially correct |
63 ms |
416 KB |
Output is partially correct |
30 |
Partially correct |
52 ms |
412 KB |
Output is partially correct |
31 |
Partially correct |
68 ms |
592 KB |
Output is partially correct |
32 |
Partially correct |
64 ms |
416 KB |
Output is partially correct |
33 |
Partially correct |
35 ms |
600 KB |
Output is partially correct |
34 |
Partially correct |
36 ms |
596 KB |
Output is partially correct |
35 |
Partially correct |
36 ms |
416 KB |
Output is partially correct |
36 |
Partially correct |
24 ms |
436 KB |
Output is partially correct |
37 |
Partially correct |
79 ms |
668 KB |
Output is partially correct |
38 |
Partially correct |
74 ms |
420 KB |
Output is partially correct |
39 |
Partially correct |
29 ms |
592 KB |
Output is partially correct |
40 |
Partially correct |
43 ms |
844 KB |
Output is partially correct |
41 |
Partially correct |
34 ms |
600 KB |
Output is partially correct |
42 |
Partially correct |
28 ms |
416 KB |
Output is partially correct |
43 |
Correct |
6 ms |
344 KB |
Output is correct |
44 |
Correct |
24 ms |
600 KB |
Output is correct |
45 |
Partially correct |
152 ms |
416 KB |
Output is partially correct |
46 |
Correct |
16 ms |
600 KB |
Output is correct |
47 |
Correct |
15 ms |
596 KB |
Output is correct |
48 |
Correct |
19 ms |
600 KB |
Output is correct |