# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
629255 | kdh9949 | Rarest Insects (IOI22_insects) | C++17 | 155 ms | 404 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 "insects.h"
const int M = 2005;
int chk[M], exc[M], cnt;
int IN(int x) {
if(chk[x]) return 0;
chk[x] = 1;
cnt++;
move_inside(x);
return 1;
}
int OUT(int x) {
if(!chk[x]) return 0;
chk[x] = 0;
cnt--;
move_outside(x);
return 1;
}
int GET() { return press_button(); }
int min_cardinality(int N) {
IN(0);
for(int i = 1; i < N; i++) {
IN(i);
if(GET() != 1) OUT(i);
}
int K = cnt;
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |