# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
628915 | flashmt | 드문 곤충 (IOI22_insects) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
vector<int> findFirstOccurrences(int n, vector<int> &id)
{
vector<int> res;
for (int i = 0; i < n; i++)
if (id[i] < 0)
{
move_inside(i);
if (press_button() > 1) move_outside(i);
else
{
id[i] = size(res);
res.push_back(i);
}
}
for (int i : res)
move_outside(i);
return res;
}
int min_cardinality(int n)
{
vector<int> id(n, -1);
auto occurrences = findFirstOccurrences(n, id);
int typeCnt = size(occurrences);
int maxC = n / typeCnt;
if (maxC <= typeCnt)
{
int ans = 1;
while (1)
{
auto occ = findFirstOccurrences(n, id);
if (size(occ) != typeCnt)
return ans;
ans++;
}
}
vector<int> cnt(n);
for (int i = 0; i < n; i++)
if (id[i] < 0)
{
move_inside(i);
for (int j : occurrences)
{
move_inside(j);
if (press_button() == 2)
{
cnt[j]++;
move_outside(j);
break;
}
move_outside(j);
}
move_outside(i);
}
int ans = *max_element(begin(cnt), end(cnt)) + 1;
return ans;
}