记录编号 |
260054 |
评测结果 |
AAAAAAAAAAA |
题目名称 |
[NOIP 2007]纪念品分组 |
最终得分 |
100 |
用户昵称 |
Rapiz |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.044 s |
提交时间 |
2016-05-12 18:31:03 |
内存使用 |
0.43 MiB |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<algorithm>
using namespace std;
const int MAXN=30000+10;
int ans,a[MAXN],n,w;
int main(){
freopen("group.in","r",stdin);
freopen("group.out","w",stdout);
cin>>w>>n;
for(int i=1;i<=n;i++) cin>>a[i];
sort(a+1,a+1+n);
int i=1,j=n;
while(i<j){
ans++;
if(a[i]+a[j]<=w) i++,j--;
else if(a[j]<=w) j--;
else if(a[j]>w) ans--,j--;
}
if(i==j&&a[i]<w) ans++;
cout<<ans;
}