D. Cutting Out 二分
Posted dongdong25800
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了D. Cutting Out 二分相关的知识,希望对你有一定的参考价值。
题意是给你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]);
}
以上是关于D. Cutting Out 二分的主要内容,如果未能解决你的问题,请参考以下文章
Codeforces Round #521 (Div. 3) D. Cutting Out
codeforces 1077D Cutting Out 二分
D. Pair of Numbers (ST表&二分&双指针)
Codeforces Round #361 (Div. 2) D. Friends and Subsequences RMQ+二分