比赛 |
NOIP2008集训模拟1 |
评测结果 |
ATWWTTTATT |
题目名称 |
地铁重组 |
最终得分 |
20 |
用户昵称 |
zxc111 |
运行时间 |
0.000 s |
代码语言 |
Pascal |
内存使用 |
0.00 MiB |
提交时间 |
2008-11-10 09:47:31 |
显示代码纯文本
program ooo;
var
i,j,k,n,m,max:longint;
t:text;
procedure oo(l,r,h:longint);
var
i,j,k:longint;
begin
if (l=n)and(r=0) then begin inc(max);max:=max mod 4096;exit;end;
if (h<m)and(l<n) then oo(l+1,r+1,h+1);
if (r<>0)and(h<>0) then oo(l,r-1,h-1);
end;
begin
assign(t,'subway.in');
reset(t);
readln(t,n,m);
close(t);
max:=1;
if m=2 then
for i:=1 to n-1 do
max:=(2*max) mod 4096;
if (m<>2)and(m<>1) then
oo(1,1,1);
assign(t,'subway.out');
rewrite(t);
write(t,max);
close(t);
end.