比赛 20091103 评测结果 AAAAAAAAAAA
题目名称 Bessie 的体重问题 最终得分 100
用户昵称 rottenwood 运行时间 0.000 s
代码语言 Pascal 内存使用 0.00 MiB
提交时间 2009-11-03 11:28:07
显示代码纯文本
program diet;
var
s:array[1..500] of longint;
f:array[0..45000] of longint;
i,j,k,m,n,h:longint;
begin
assign(input,'diet.in');reset(input);
assign(output,'diet.out');rewrite(output);
readln(h,n);
for i:=1 to n do
readln(s[i]);
for i:=1 to n do
 for j:=h downto 1 do
 if j-s[i]>=0 then
 if f[j-s[i]]+s[i]>f[j] then
 f[j]:=f[j-s[i]]+s[i];
writeln(f[h]);
close(output);
end.