记录编号 130280 评测结果 AAAAAAAAAAA
题目名称 [NOIP 2007]纪念品分组 最终得分 100
用户昵称 GravatarFmuckss 是否通过 通过
代码语言 C++ 运行时间 0.020 s
提交时间 2014-10-21 21:50:20 内存使用 0.41 MiB
显示代码纯文本
#include<stdio.h>
#include<algorithm>
#define maxn 30005
int a[maxn]={0};
int main()
{
	freopen("group.in","r",stdin);
	freopen("group.out","w",stdout);
	int n,m,i,tot,w,p;
	scanf("%d",&m);
	scanf("%d",&n);
	tot=n;
	for(i=1;i<=n;i++)
	{
		scanf("%d",&a[i]);
	}
	std::sort(a+1,a+n+1);
	i=1;
	for(w=n;w>=1;w--)
	{
		if(w<=i)
		{
			break;
		}
		if(a[i]+a[w]<=m)
		{
			tot--;
			i++;
		}
	}
	printf("%d",tot);
	return 0;
}