记录编号 6330 评测结果 AAAAAAA
题目名称 最小乘车费用 最终得分 100
用户昵称 Gravatar苏轼 是否通过 通过
代码语言 Pascal 运行时间 0.003 s
提交时间 2008-10-31 22:41:41 内存使用 0.15 MiB
显示代码纯文本
program cch(input,output);
const
 maxf=10000;
var
 i,j,n:longint;
 a:array[1..10] of integer;
 f:array[0..maxf] of longint;
begin
 assign(input,'busses.in');
 assign(output,'busses.out');
 reset(input);
 rewrite(output);
 for i:=1 to 10 do read(a[i]);
 read(n);
 for i:=1 to maxf do f[i]:=maxlongint;
 f[0]:=0;
 for i:=1 to 10 do
  for j:=i to n do
   if f[j]>f[j-i]+a[i] then f[j]:=f[j-i]+a[i];
 write(f[n]);
 close(input);
 close(output);
end.