记录编号 326911 评测结果 AAAAAAAAAE
题目名称 为爱追寻 最终得分 90
用户昵称 Gravatar丁司令 是否通过 未通过
代码语言 C++ 运行时间 4.927 s
提交时间 2016-10-21 17:25:51 内存使用 21.91 MiB
显示代码纯文本
#include<cstdio>
#include<iostream>
using namespace std;
int n,x,y,x1,y1,h,s,sum;
bool a[5020][5020];
int main()
{	
    freopen("loverfinding.in","r",stdin);	
    freopen("loverfinding.out","w",stdout);
	cin>>n>>x>>y>>x1>>y1;	
	x+=2501;	
	y+=2501;	
	x1+=2501;	
	y1+=2501;	
	sum=1;	
	a[x][y]=1;
	for(int i=1;i<=n;i++)	  
	{	  	
	  scanf("%d%d",&h,&s);	  	
	  x+=h;	  	
	  y+=s;	    
	  if(!a[x][y]) 	    
	  {	    	
	    sum++;	    	
		a[x][y]=1;	    	
		if(x==x1&&y==y1) break;	    
		}	  
	}	
	if(sum==n&&(x!=x1||y!=y1))	cout<<"SingleDogMZX";	
	else	cout<<sum;	
	fclose(stdin);	
	fclose(stdout);	
	return 0;
	}