# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
736341 | jk410 | Rarest Insects (IOI22_insects) | C++17 | 273 ms | 508 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"
#include <bits/stdc++.h>
using namespace std;
int n;
bool used[2000];
int mySolve[2001];
int solve(int x) {
int& ret = mySolve[x];
if (ret != -1)
return ret;
for (int i = 0; i < n; i++) {
move_inside(i);
used[i] = true;
if (press_button() > x) {
used[i] = false;
move_outside(i);
}
}
ret = 0;
for (int i = 0; i < n; i++) {
if (used[i]) {
ret++;
move_outside(i);
}
}
return ret;
}
int min_cardinality(int _n) {
n = _n;
memset(mySolve, -1, sizeof(mySolve));
int cnt = solve(1);
int l = 1, r = n / cnt, ans;
while (l <= r) {
int m = (l + r) >> 1;
if (solve(m) == cnt * m) {
ans = m;
l = m + 1;
}
else
r = m - 1;
}
return ans;
}
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... |