记录编号 |
447137 |
评测结果 |
AAAAAAAAAAA |
题目名称 |
[NOIP 2007]纪念品分组 |
最终得分 |
100 |
用户昵称 |
JustWB |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.017 s |
提交时间 |
2017-09-09 15:01:29 |
内存使用 |
0.43 MiB |
显示代码纯文本
#include<cstdio>
#include<iostream>
#include<algorithm>
using namespace std;
inline int get();
int n,w,ans;
int N[30005];
int main()
{
freopen("group.in","r",stdin);
freopen("group.out","w",stdout);
w=get(),n=get();
for(int i=1;i<=n;i++)N[i]=get();
sort(N+1,N+n+1);
int l=1,r=n;
while(l<r)
{
if(N[l]+N[r]<=w)l++,r--,ans++;
else if(N[r]>w)r--;
else if(N[r]<=w)r--,ans++;
}
if(l==r&&N[l]<=w)ans++;
printf("%d",ans);
return 0;
}
inline int get()
{
int t=0;char c=getchar(),j=1;
while(!isdigit(c))
{
if(c=='-')j=-1;
c=getchar();
}
while(isdigit(c))
{
t=(t<<3)+(t<<1)+c-'0';
c=getchar();
}
return j*t;
}