# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
830543 | tolbi | 드문 곤충 (IOI22_insects) | C++17 | 221 ms | 420 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
mt19937 ayahya(chrono::high_resolution_clock().now().time_since_epoch().count());
#include "insects.h"
int min_cardinality(int n) {
function<int(int)> f;
vector<int> hash(n);
iota(hash.begin(), hash.end(), 0);
for (int i = n-1; i >= 0; i--){
swap(hash[i],hash[ayahya()%(i+1)]);
}
f = [&](int x)->int{
int ans = 0;
vector<int> crr;
for (int i = 0; i < n; i++){
crr.push_back(hash[i]);
move_inside(hash[i]);
if (press_button()>x){
ans++;
crr.pop_back();
move_outside(hash[i]);
}
}
for (int i = 0; i < crr.size(); ++i)
{
move_outside(crr[i]);
}
return ans;
};
int diff = n-f(1);
int l = 1, r = n;
while (l<r){
int mid = l+(r-l+1)/2;
if (f(mid)>n-(mid*diff)){
r=mid-1;
}
else l = mid;
}
return l;
}
컴파일 시 표준 에러 (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... |