#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), A[i]=0, B[i]=0;
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;
}
Compilation message
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;
| ~~^~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
208 KB |
Output is correct |
2 |
Correct |
1 ms |
208 KB |
Output is correct |
3 |
Correct |
0 ms |
208 KB |
Output is correct |
4 |
Correct |
0 ms |
208 KB |
Output is correct |
5 |
Incorrect |
1 ms |
208 KB |
Wrong answer. |
6 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
208 KB |
Output is correct |
2 |
Correct |
1 ms |
208 KB |
Output is correct |
3 |
Correct |
0 ms |
208 KB |
Output is correct |
4 |
Correct |
0 ms |
208 KB |
Output is correct |
5 |
Incorrect |
1 ms |
208 KB |
Wrong answer. |
6 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
208 KB |
Wrong answer. |
2 |
Halted |
0 ms |
0 KB |
- |