# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1054639 | shmax | Rarest Insects (IOI22_insects) | C++17 | 3 ms | 504 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;
#define len(x) ((int)(x.size()))
#define all(x) x.begin(), x.end()
template<typename T>
using vec = vector<T>;
template<typename T>
using graph = vec<vec<T>>;
mt19937 rnd(2312);
int min_cardinality(int n) {
graph<int> g(n);
auto connect = [&](int u, int v) {
g[u].push_back(v);
g[v].push_back(u);
};
vec<int> ord(n);
int diff = 0;
vec<int> in;
for (int i = 0; i < n; i++) {
move_inside(i);
if (press_button() > 1) {
move_outside(i);
} else {
diff++;
in.push_back(i);
}
}
for (auto x: in) {
move_outside(x);
}
int tcnt = n;
int tl = 1;
int tr = tcnt;
iota(all(ord), 0);
auto check = [&](int x) {
int cnt = 0;
vec<int> ins;
for (int i: ord) {
move_inside(i);
if (press_button() > x) {
move_outside(i);
} else {
cnt++;
ins.push_back(i);
}
if (cnt == x * diff) break;
}
for (auto y: ins) {
move_outside(y);
}
tcnt = cnt;
return cnt == x * diff;
};
while (tr > 2) {
int tm = tr / diff;
if (check(tm)) {
return tm;
} else {
tr = tcnt/diff;
}
}
if (check(2)) {
return 2;
}
return 1;
}
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... |