#include "insects.h"
#include<bits/stdc++.h>
using namespace std;
#define pb push_back
void put(int x){
move_inside(x - 1);
}
void pop(int x){
move_outside(x - 1);
}
int get(){
return press_button();
}
int min_cardinality(int N) {
int n = N;
vector<int> d;
map<int, int> q, cnt;
int ls = 0;
for(int i=1; i<=n; i++){
put(i);
if(get() == 1){
q[i] = ++ls;
cnt[ls] = 1;
d.pb(i);
continue;
}
for(int x: d){
pop(x);
if(get() == 1){
cnt[q[x]] ++;
q[i] = q[x];
}
put(x);
}
pop(i);
}
int ans = -1, mn = 1e9;
for(int i=1; i<=n; i++){
//cout<<i<<' '<<q[i]<<'\n';
if(cnt[q[i]] < mn){
ans = i;
mn = cnt[q[i]];
}
}
return ans-1;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
344 KB |
Wrong answer. |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
344 KB |
Wrong answer. |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Incorrect |
0 ms |
344 KB |
Wrong answer. |
3 |
Halted |
0 ms |
0 KB |
- |