记录编号 |
30297 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[POI 1997] 独木舟 |
最终得分 |
100 |
用户昵称 |
Truth.Cirno |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.044 s |
提交时间 |
2011-10-28 17:49:59 |
内存使用 |
0.26 MiB |
显示代码纯文本
#include <cstdio>
using namespace std;
int main(void)
{
freopen("kaj.in","r",stdin);
freopen("kaj.out","w",stdout);
int i,j,n,abi,minnum=200,maxnum=0,c=0,temp,hash[201]={0};
scanf("%d %d",&abi,&n);
for (i=0;i<n;i++)
{
scanf("%d",&temp);
hash[temp]++;
if (temp<minnum)
minnum=temp;
if (temp>maxnum)
maxnum=temp;
}
for (i=maxnum;n&&i>=minnum;)
if (hash[i])
{
hash[i]--;
n--;
temp=abi-i;
for (j=minnum;j<=temp;j++)
if (hash[j])
{
hash[j]--;
n--;
break;
}
else
minnum=j;
c++;
}
else
i--;
printf("%d\n",c);
fclose(stdin);
fclose(stdout);
return(0);
}