比赛 20091103 评测结果 AAAAAAAAAAA
题目名称 Bessie 的体重问题 最终得分 100
用户昵称 .Xmz 运行时间 0.000 s
代码语言 Pascal 内存使用 0.00 MiB
提交时间 2009-11-03 09:52:55
显示代码纯文本
program xmz;
var
f1,f2:text;
f:array[0..45000]of longint;
x:array[1..500]of longint;
w,n,a,b:longint;
begin
 assign(f1,'diet.in');assign(f2,'diet.out');
 reset(f1);rewrite(f2);
 read(f1,w,n);
 for a:=1 to n do
  read(f1,x[a]);
 for a:=1 to n do
  for b:=w downto 1 do
   if b>=x[a] then
   if f[b]<f[b-x[a]]+x[a] then f[b]:=f[b-x[a]]+x[a];
 writeln(f2,f[w]);
 close(f1);close(f2);
end.