This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "insects.h"
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
int min_cardinality (int n) {
vector < int > a (n, -1);
vector < int > c;
int ci = 0;
for (int i = 0; i < n; ++i)
{
if (a[i] == -1) a[i] = ci++;
c.push_back (1);
move_inside (i);
for (int j = i + 1; j < n; ++j)
{
if (a[j] != -1) continue;
move_inside (i);
if (press_button () == 2)
a[j] = a[i], ++c[a[i]];
move_inside (i);
}
move_outside (i);
}
return *min_element (c.begin (), c.end ());
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |