比赛 |
NOIP模拟赛by mzx Day1 |
评测结果 |
AAAAAAAAAE |
题目名称 |
为爱追寻 |
最终得分 |
90 |
用户昵称 |
jyhywh |
运行时间 |
5.247 s |
代码语言 |
C++ |
内存使用 |
24.17 MiB |
提交时间 |
2016-10-19 21:33:30 |
显示代码纯文本
#include<cstdio>
#include<map>
#include<iostream>
using namespace std;
bool a[5001][5001];
int n,x0,y0,x1,y1;
long long ans=1;
int main()
{
freopen("loverfinding.in","r",stdin);
freopen("loverfinding.out","w",stdout);
int i,j,x,y;
scanf("%d%d%d%d%d",&n,&x0,&y0,&x1,&y1);
x0+=2500;
y0+=2500;
x1+=2500;
y1+=2500;
a[x0][y0]=1;
for(i=1;i<=n;i++)
{
scanf("%d%d",&x,&y);
x0=x0+x,y0=y0+y;
if(a[x0][y0])
continue;
ans++;
a[x0][y0]=1;
if(x0==x1&&y0==y1)
{
cout<<ans;
return 0;
}
}
printf("SingleDogMZX");
return 0;
}