# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
629629 | study | Rarest Insects (IOI22_insects) | C++17 | 60 ms | 412 KiB |
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 <bits/stdc++.h>
#include "insects.h"
using namespace std;
int min_cardinality(int N) {
bitset<2000> inside;
int nbElems = 0;
for (int i=0; i<N; ++i){
move_inside(i);
if (i != 0){
int maxFreq = press_button();
if (maxFreq > 1) move_outside(i);
else{
++nbElems;
inside[i] = true;
}
}
else{
++nbElems;
inside[i] = true;
}
}
if (nbElems == 1) return N;
if (nbElems == N) return 1;
int in = nbElems, crt = 1;
int deb = 2, fin = N/nbElems, ans = 1;
vector<int> last;
while (deb <= fin){
int mid = fin-(fin-deb)/2;
if (crt > mid) mid = deb+(fin-deb)/2;
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |