比赛 NOIP模拟赛by mzx Day1 评测结果 EEEEEEEEEE
题目名称 为爱追寻 最终得分 0
用户昵称 doriko 运行时间 0.025 s
代码语言 Pascal 内存使用 24.02 MiB
提交时间 2016-10-19 21:16:47
显示代码纯文本
var map:array[-2500..2500,-2500..2500]of shortint;
    t:boolean;xx,yy,x,y,xt,yt,n,ans,i:longint;

  begin

    assign(input,'loverfinding.in');reset(input);
    assign(output,'loverfinding.out');rewrite(output);

    readln(n,x,y,xt,yt);

    t:=false;
    map[x,y]:=1;ans:=1;

    for i:=1 to n do
        begin
          read(xx,yy);
          x:=x+xx;y:=y+yy;
          if map[x,y]=0 then begin inc(map[x,y]);inc(ans);end;
          if (x=xt)and(y=yt) then
             begin
               t:=true;
               break;
             end;
        end;

    writeln(ans);
    if not t then writeln('SingleDogMZX');

    close(output);

  end.