记录编号 109871 评测结果 AAAAA
题目名称 [湖北2011寒假] 求M数 最终得分 100
用户昵称 Gravatar甘罗 是否通过 通过
代码语言 Pascal 运行时间 0.648 s
提交时间 2014-07-09 17:58:38 内存使用 7.79 MiB
显示代码纯文本
program zht;
var
i,n,t,q:longint;
z,x:array[1..1000000] of longint;
begin
assign(input,'allm.in');
assign(output,'allm.out');
reset(input);
rewrite(output);
readln(n);

for i:=1 to n do
begin
q:=0;
read(z[i]);
if i=1 then begin write('0 ');x[1]:=0;end else begin
t:=i;
while t<>0 do
begin
t:=t-1;
if z[t]<z[i] then begin write(z[t],' ');x[i]:=z[t];q:=1;break;end;
if z[t]>z[i] then if x[t]<z[i] then begin write(x[t],' ');q:=1;x[i]:=x[t];break;end;
end;
if q=0 then write('0 ');
end;

end;
close(input);
close(output);

end.