记录编号 |
326481 |
评测结果 |
AAAWWWWWWE |
题目名称 |
为爱追寻 |
最终得分 |
30 |
用户昵称 |
lsj |
是否通过 |
未通过 |
代码语言 |
C++ |
运行时间 |
5.810 s |
提交时间 |
2016-10-21 08:19:30 |
内存使用 |
86.18 MiB |
显示代码纯文本
#include<iostream>
#include<algorithm>
#include<cstdio>
#include<cstring>
#include<string>
#include<cmath>
using namespace std;
int flag=0;
int f[5002][5002]={};
int main()
{
freopen("loverfinding.in","r",stdin);
freopen("loverfinding.out","w",stdout);
int n,xo,yo,xt,yt;
int num=1;
scanf("%d%d%d%d%d",&n,&xo,&yo,&xt,&yt);
xo+=2500;
yo+=2500;
xt+=2500;
yt+=2500;
for(int i=1;i<=n;i++)
{
int dx,dy;
scanf("%d%d",&dx,&dy);
xo=xo+dx;
yo=yo+dy;
if(xo==xt&&yo==yt){flag=1;break;}
if(f[xo][yo]==0)
{
num++;
f[xo][yo]=1;
}
}
if(flag==1)cout<<num+1<<endl;
else cout<<"SingleDogMZX"<<endl;
return 0;
}