# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
827947 | arnold518 | 드문 곤충 (IOI22_insects) | C++17 | 41 ms | 308 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "insects.h"
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
const int MAXN = 2000;
int A[MAXN+10], B[MAXN+10];
int min_cardinality(int N)
{
for(int i=0; i<N; i++)
{
move_inside(i); A[i]=1;
if(press_button()>1)
{
move_outside(i); A[i]=0;
}
}
int cnt=0;
for(int i=0; i<N; i++) cnt+=A[i];
for(int i=0; i<N; i++) if(A[i]) move_outside(i);
if(cnt==1) return N;
if(cnt==2)
{
for(int i=0; i<N; i++) move_inside(i);
return N-press_button();
}
int lo=1, hi=N/cnt+1;
int val=0;
while(lo+1<hi)
{
int mid=lo+hi>>1, t=val;
for(int i=0; i<N; i++)
{
if(B[i] || A[i]) continue;
move_inside(i); A[i]=1; t++;
if(press_button()>mid)
{
move_outside(i); A[i]=0; t--;
}
if(t==mid*cnt) break;
}
if(t==mid*cnt)
{
lo=mid; val=mid*cnt;
}
else
{
hi=mid;
for(int i=0; i<N; i++) if(!B[i] && !A[i]) B[i]=1;
for(int i=0; i<N; i++) if(A[i]) move_outside(i);
}
//printf("%d : %d\n", mid, t);
if(t==mid*cnt) lo=mid;
else hi=mid;
}
return lo;
}
컴파일 시 표준 에러 (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... |