이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "insects.h"
using namespace std;
int min_cardinality(int n) {
vector <bool> vis (n);
int tp = 0;
for (int i = 0; i < n; i++){
move_inside(i);
if (press_button() == 2) {
move_outside(i);
}
else {
vis[i] = 1;
tp++;
}
}
for (int i = 0; i < n; i++) if (vis[i]) move_outside(i);
int l = 0, r = n, rs = -1;
while (l <= r){
int mid = (l + r) / 2;
auto check = [n, tp] (int x) -> bool {
vector <int> vis (n);
int ins = 0;
for (int i = 0; i < n; i++){
move_inside(i);
// cout << x << " " << i << " " << ins << " " << press_button() << "\n";
if (press_button() > x) {
move_outside(i);
}
else {
ins++;
vis[i] = 1;
}
}
for (int i = 0; i < n; i++) if (vis[i]) move_outside(i);
return ins == x * tp;
};
if (check(mid)) {
rs = mid;
l = mid + 1;
}
else {
r = mid - 1;
}
}
return rs;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |