比赛 |
假期找点事儿做题吧 |
评测结果 |
AAAAAAAAAA |
题目名称 |
独木舟 |
最终得分 |
100 |
用户昵称 |
TARDIS |
运行时间 |
0.028 s |
代码语言 |
C++ |
内存使用 |
0.38 MiB |
提交时间 |
2017-06-07 16:34:56 |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cmath>
#include<algorithm>
#define maxn 30001
using namespace std;
int w,n,p[maxn];int ans=0;
inline void readln(){
freopen("kaj.in","r",stdin);
freopen("kaj.out","w",stdout);
scanf("%d%d",&w,&n);
for (int i=1;i<=n;i++){
scanf("%d",&p[i]);
}
}
inline void work(){
sort(p+1,p+n+1);
int l=1,r=n;
while(l<=r){
if (p[l]+p[r]<=w){
ans++;l++;r--;
}
else {
ans++;r--;
}
}
printf("%d\n",ans);
}
int main(){
readln();
work();
fclose(stdin);fclose(stdout);
return 0;
}