列表

详情


NC204616. Flowers

描述

Recently Jack becomes much more romantic. He would like to prepare several bunches of flowers.

Each bunch of flowers must have exactly M flowers. As Jack does not want to be boring, he hopes that flowers in the same bunch are all different species. Now there are species of flowers in the flower shop, and the number of the i-th species of flower is a_i. Now Jack would like to know how many bunches of flowers he can prepare at most.

输入描述

The first line contains an integer  () --- the number of test cases.
In the first line of each test case, there are two integers , () --- the number of flowers' species and the number of flowers in a bunch.
In the second line of each test case, there are integers --- the -th integer indicates a_i (), the number of -th species' flowers.

输出描述

For each test case, output one integer in one line --- the answer of the corresponding test case.

示例1

输入:

1 
5 3 
1 1 1 2 1

输出:

2

原站题解

上次编辑到这里,代码来自缓存 点击恢复默认模板

C++14(g++5.4) 解法, 执行用时: 195ms, 内存消耗: 2596K, 提交时间: 2020-10-11 20:32:47

#include<cstdio>
#include<algorithm>
using namespace std;
long long ans,m,tot,a[300005];
int T,n,i,k;
int main()
{
	scanf("%d",&T);
	while(T--)
	{
		scanf("%d%lld",&n,&m);
		if (m>n) printf("0\n");
		else
		{
			ans=0;
			for(i=1;i<=n;i++)
			{
				scanf("%lld",&a[i]);
				ans+=a[i];
			}
			sort(a+1,a+n+1);
			reverse(a+1,a+n+1);
			k=1;
			while(ans/m<a[k]&&m>1)
			{
				ans-=a[k++];
				m--;
			}
			printf("%lld\n",ans/m);
		}
	}
}

C++11(clang++ 3.9) 解法, 执行用时: 149ms, 内存消耗: 2680K, 提交时间: 2020-10-07 19:48:52

#include<bits/stdc++.h>
#define ll long long 
using namespace std;
const int nx=3e5+5;
ll a[nx];
int n,m;
bool ck(ll x){
	ll s=0;
	for(int i=0;i<n;++i)
		s+=a[i]>=x?x:a[i];
	return s>=x*m; 
}
int main(){
	int t;scanf("%d",&t);
	while(t--){
		scanf("%d%d",&n,&m);
		for(int i=0;i<n;++i)scanf("%lld",a+i);
		ll l=-1,r=3e14+1,mid;
		while(l+1<r){
			mid=l+r>>1;
			if(ck(mid))l=mid;
			else r=mid;
		}printf("%lld\n",l);
	}
}

上一题