记录编号 |
326837 |
评测结果 |
RRRRRRRRRR |
题目名称 |
为爱追寻 |
最终得分 |
0 |
用户昵称 |
kilometer |
是否通过 |
未通过 |
代码语言 |
C |
运行时间 |
0.014 s |
提交时间 |
2016-10-21 16:39:58 |
内存使用 |
2.10 MiB |
显示代码纯文本
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <string.h>
int main()
{
freopen("loverfinding","r",stdin);
freopen("loverfinding","w",stdout);
int a[3000];
int b[3000];
short c[1000][1000];
int x0,y0;
int xt,yt,xo,yo,r,t,k,n,i,j,z=0;
scanf("%d",&n);
scanf("%d",&xo);
scanf("%d",&yo);
scanf("%d",&xt);
scanf("%d",&yt);
c[x0][y0]=1;
k=1;
t=xo;
r=yo;
if(xo==xt&&yo==yt)
{
printf("1");
}
else
{
for(i=1;i<=n;i++)
{
for(j=1;j<=n;j++)
{
c[i][j]=0;
}
}
for(i=1;i<=n;i++)
{
scanf("%d",&a[i]);
scanf("%d",&b[i]);
t=t+a[i];
r=r+b[i];
if(c[t][r]==0)
{
c[t][r]++;
k++;
}
if(t==xt&&r==yt)
{
z=1;
break;
}
}
printf("%d",k);
if(z==0)
{
printf("SingleDogMZX");
}
}
return 0;
}