比赛 小练习赛:B组 评测结果 AAAAAAAAAAW
题目名称 纪念品分组 最终得分 90
用户昵称 高哥 运行时间 0.020 s
代码语言 C++ 内存使用 0.43 MiB
提交时间 2014-10-21 20:37:24
显示代码纯文本
#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;
int a[30030],n,w;
int main()
{
	freopen("group.in","r",stdin);
	freopen("group.out","w",stdout);
	int ans=0;
	scanf("%d%d",&w,&n);
	for(int i=1;i<=n;i++)
	  scanf("%d",&a[i]);
	sort(a+1,a+1+n);
	int l=1,r=n;
	while(l<=r)
	{
		if(a[r]+a[l]>w)
		{
			ans++;
			r--;
		}
		if(a[r]+a[l]<=w)
		{
			ans++;
			r--;
			l++;
		}
	}
	printf("%d\n",ans);
	return 0;
}