# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
859006 | thinknoexit | 드문 곤충 (IOI22_insects) | C++17 | 185 ms | 600 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;
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++;
}
for (int i = 0;i < n;i++) if (in[i] == 1) move_outside(i);
if (type == 1) return n;
int mxans = n / type;
for (int i = 1;i <= mxans;i++) {
int cnt = 0;
for (int j = 0;j < n;j++) {
if (in[j]) continue;
move_inside(j);
if (press_button() == 2) {
move_outside(j);
}
else in[j] = i + 1, cnt++;
}
if (cnt != type) return i;
for (int j = 0;j < n;j++) if (in[j] == i + 1) move_outside(j);
}
// n , n , n
/*
ans <= n / type
ans <= n - mx
*/
}
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... |