이 제출은 이전 버전의 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]) A[i]=0, B[i]=1;
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=cnt;
while(lo+1<hi)
{
int mid=lo+hi>>1, t=val;
for(int i=0; i<N; i++)
{
if(t==mid*cnt) break;
if(B[i]) continue;
move_inside(i); A[i]=1; t++;
if(press_button()>mid)
{
move_outside(i); A[i]=0; t--;
}
}
if(t==mid*cnt)
{
lo=mid;
for(int i=0; i<N; i++) if(!B[i] && A[i]) B[i]=1, A[i]=0, val++;
}
else
{
hi=mid;
for(int i=0; i<N; i++) if(!B[i] && !A[i]) B[i]=2;
for(int i=0; i<N; i++) if(A[i]) move_outside(i), A[i]=0;
}
}
return lo;
}
컴파일 시 표준 에러 (stderr) 메시지
insects.cpp: In function 'int min_cardinality(int)':
insects.cpp:37:13: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
37 | int mid=lo+hi>>1, t=val;
| ~~^~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |