# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
799733 | rnl42 | 드문 곤충 (IOI22_insects) | C++17 | 56 ms | 420 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "insects.h"
#include <vector>
#include <iostream>
#include <random>
#include <algorithm>
#include <numeric>
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;
vector<int> order(N);
mt19937 rng(42);
while (mini != maxi) {
int mid = maxi-mini > 5 ? (mini+maxi-2>>1)+rng()%4 : (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;
}
컴파일 시 표준 에러 (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... |