题意是给你n个数字的序列,让你从中找含k个数字的序列,要求这k个数字要尽可能多次的从n个数字的序列中减去。
解法就是从1到n,二分查找可以删除的最大次数。
http://codeforces.com/contest/1077/problem/D
#include<bits/stdc++.h>
using namespace std;
const int maxn=2e5+10;
int book[maxn];
int box[maxn];
int n,k;
int fun(int cnt)
{
int top=0;
for(int i=1; i<maxn; i++)
{
for(int j=1; j<=book[i]/cnt; j++)
{
box[++top]=i;
}
}
return top;
}
int main()
{
scanf("%d%d", &n, &k);
for(int i=1; i<=n; i++)
{
int t;
scanf("%d", &t);
book[t]++;
}
int l,r;
l=1,r=n;
while(l<=r)
{
int mid=(l+r)/2;
if(fun(mid)>=k)
l=mid+1;
else
r=mid-1;
}
fun(l-1);
printf("%d", box[1]);
for(int i=2; i<=k; i++)
printf(" %d", box[i]);
}