# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
793402 | rnl42 | Rarest Insects (IOI22_insects) | C++17 | 53 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 "insects.h"
#include <vector>
#include <iostream>
using namespace std;
int N, W;
vector<bool> deleted;
int remaining;
int get_width() {
int ret = 0;
for (int i = 0; i < N; i++) {
move_inside(i);
if (press_button() >= 2) {
move_outside(i);
} else {
deleted[i] = true;
ret++;
}
}
return ret;
}
int min_cardinality(int _N) {
N = _N;
deleted.resize(N);
W = get_width();
remaining = N-W;
int mini = 1, maxi = N/W;
int minh = 1, maxh = N-W+1;
if (W == 1) mini = N;
while (mini != maxi) {
int mid = (mini+maxi+1)>>1;
vector<int> in_machine;
vector<int> out_machine;
for (int i = 0; i < N; i++) {
if (!deleted[i]) {
move_inside(i);
if (press_button() > mid) {
move_outside(i);
out_machine.push_back(i);
} else {
in_machine.push_back(i);
}
}
}
if ((int)in_machine.size() == W*(mid-minh)) {
for (int i : in_machine) {
deleted[i] = true;
remaining--;
}
mini = mid;
minh = mid;
} else {
for (int i : out_machine) {
deleted[i] = true;
remaining--;
}
for (int i : in_machine) {
move_outside(i);
}
maxi = mid-1;
maxh = mid;
}
}
return mini;
}
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... |