# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1058275 | Dan4Life | 드문 곤충 (IOI22_insects) | C++17 | 41 ms | 672 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "insects.h"
#include <bits/stdc++.h>
using namespace std;
#define pb push_back
#define sz(a) (int)a.size()
#define all(a) begin(a), end(a)
using vi = vector<int>;
int D, inside[3000];
int min_cardinality(int n) {
for(int i = 0; i < n; i++){
move_inside(i);
if(press_button()>1) move_outside(i);
else inside[i]=1, D++;
}
if(D==1) return n;
if(D==n) return 1;
int l = 1, r = n/D, p=1, tot=D;
while(l<r){
int mid = (l+r+1)/2;
for(int i = 0; i < n; i++)
if(inside[i] > mid and mid<p)
move_outside(i), inside[i]=0, tot--;
for(int i = 0; i < n; i++){
if(inside[i]!=0) continue; move_inside(i);
if(press_button()>mid) move_outside(i);
else inside[i]=mid, tot++;
}
if(tot==D*mid) l = mid;
else{
for(int i = 0; i < n; i++)
if(!inside[i]) inside[i]=-1;
r=mid-1;
}
p=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... |