记录编号 200519 评测结果 AAAAAAAAAAA
题目名称 待售干草 最终得分 100
用户昵称 Gravatar/k 是否通过 通过
代码语言 C++ 运行时间 0.502 s
提交时间 2015-10-28 21:31:58 内存使用 0.57 MiB
显示代码纯文本
#include<iostream>
#include<cstdio>
using namespace std;
int q[50010],w;
int m,n,v[5010],pr;
bool b[50010];
int main()
{
	freopen("hay4sale.in","r",stdin);
	freopen("hay4sale.out","w",stdout);
	q[++w]=0;
	scanf("%d%d",&m,&n);
	for(int i=1;i<=n;i++)
	{
		int o;
		scanf("%d",&o);
		int u=w;
		for(int j=1;j<=u;j++)
		{
			if(q[j]+o<=m&&!b[q[j]+o])
			{
				if(pr<q[j]+o)
				    pr=q[j]+o;
				b[q[j]+o]=1;
				q[++w]=q[j]+o;
			}
		}
	}
	printf("%d",pr);
}