# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
629363 | dacin21 | 드문 곤충 (IOI22_insects) | C++17 | 65 ms | 440 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "insects.h"
/*
void move_inside(int i);
void move_outside(int i);
int press_button();
*/
#include <bits/stdc++.h>
using namespace std;
vector<int> in, out;
void one_pass(vector<int> pool, int tr){
in.clear();
out.clear();
for(auto &e : pool){
move_inside(e);
if(press_button() > tr){
move_outside(e);
out.push_back(e);
} else {
in.push_back(e);
}
}
for(auto &e : in){
move_outside(e);
}
}
int min_cardinality(int n) {
vector<int> all(n);
iota(all.begin(), all.end(), 0);
one_pass(all, 1);
const int B = in.size();
int ans = 1;
all = out;
while(all.size() >= B){
const int t = (all.size() / B + 1) / 2;
one_pass(all, t);
if(in.size() == t*B){
ans += t;
all = out;
} else {
all = in;
}
}
return ans;
}
컴파일 시 표준 에러 (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... |