比赛 |
NOIP2008集训模拟4 |
评测结果 |
AAAAAAAAAA |
题目名称 |
艾萨拉的激流 |
最终得分 |
100 |
用户昵称 |
francis |
运行时间 |
0.000 s |
代码语言 |
Pascal |
内存使用 |
0.00 MiB |
提交时间 |
2008-11-13 10:01:23 |
显示代码纯文本
program azshara;
const
fin='azshara.in';
fou='azshara.out';
var
a:array[1..1000]of longint;
f:array[1..2,1..1000]of longint;
p,q,x,max,temp,i,j,n,m:longint;
f1,f2:text;
procedure init;
begin
assign(f1,fin);
assign(f2,fou);
reset(f1); rewrite(f2);
read(f1,m,n);
for i:=1 to m do
begin
read(f1,x);
if x<>-1 then f[1,i]:=x;
end;
q:=1; p:=2;
end;
procedure main;
begin
for i:=2 to n do
begin
temp:=q; q:=p; p:=temp;
for j:=1 to m do
read(f1,a[j]);
for j:=1 to m do
begin
if a[j]=-1 then f[q,j]:=0
else begin
f[q,j]:=f[p,j]+a[j];
if (j>1)and(f[q,j]<f[p,j-1]+a[j]) then f[q,j]:=f[p,j-1]+a[j];
if (j<m)and(f[q,j]<f[p,j+1]+a[j]) then f[q,j]:=f[p,j+1]+a[j];
end;
end;
end;
end;
procedure print;
begin
for i:=1 to m do
if max<f[q,i] then max:=f[q,i];
write(f2,max);
close(f1); close(f2);
end;
begin
init;
main;
print;
end.