#include "insects.h"
#include <bits/stdc++.h>
using namespace std;
#define rall(s) s.rbegin(), s.rend()
#define all(s) s.begin(), s.end()
#define sz(s) (int) s.size()
#define s second
#define f first
using ll = long long;
using pii = pair<int, int>;
using pll = pair<ll, ll>;
int min_cardinality(int n) {
vector<vector<int>> s;
s.push_back({{0}});
for (int i = 1; i < n; i++) {
move_inside(i);
if (press_button() > 1) {
for (int j = 0; j < sz(s); j++) {
move_outside(s[j].back());
if (press_button() == 1) {
s[j].push_back(i);
break;
}
move_inside(s[j].back());
}
continue;
}
s.push_back({{i}});
}
int ans = n + 1;
for (int i = 0; i < sz(s); i++) ans = min(ans, sz(s[i]));
return ans;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
596 KB |
Wrong answer. |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
596 KB |
Wrong answer. |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
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 |
- |