比赛 |
NOIP模拟赛by mzx Day1 |
评测结果 |
TTTTTTTTTE |
题目名称 |
为爱追寻 |
最终得分 |
0 |
用户昵称 |
lsj |
运行时间 |
9.130 s |
代码语言 |
C++ |
内存使用 |
95.76 MiB |
提交时间 |
2016-10-19 21:37:15 |
显示代码纯文本
#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;
cin>>n>>xo>>yo>>xt>>yt;
xo+=2500;
yo+=2500;
xt+=2500;
yt+=2500;
for(int i=1;i<=n;i++)
{
int dx,dy;
cin>>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;
}