比赛 |
小练习赛:B组 |
评测结果 |
WWWWWWWWWWW |
题目名称 |
纪念品分组 |
最终得分 |
0 |
用户昵称 |
Dot_Dot |
运行时间 |
0.001 s |
代码语言 |
C++ |
内存使用 |
0.40 MiB |
提交时间 |
2014-10-21 19:37:16 |
显示代码纯文本
#include <cstdio>
#include <algorithm>
using namespace std;
int w,n,a[30005],ans;
bool comp(int x,int y){return x>y;}
int main()
{
freopen("group.in","r",stdin);
freopen("group.out","w",stdin);
scanf("%d%d",&w,&n);
for(int i=1;i<=n;i++)
scanf("%d",&a[i]);
sort(a+1,a+n+1,comp);
int head=1,tail=n;
while(tail>head)
{
if(a[head]+a[tail]<=w)
{
ans++;
head++;
tail--;
}
else
{
ans++;
head++;
}
}
if(head==tail) ans++;
printf("%d",ans);
return 0;
}