记录编号 326474 评测结果 AAAAAAAAAA
题目名称 为爱追寻 最终得分 100
用户昵称 GravatarL_in 是否通过 通过
代码语言 C++ 运行时间 7.575 s
提交时间 2016-10-21 08:13:11 内存使用 7.16 MiB
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<cmath>
#define maxn 1001000 
using namespace std;
struct Point{
	int x,y;
};
Point p[maxn],end;
bool cmp(const Point&A,const Point&B){
	if(A.x==B.x)return A.y<B.y;
	return A.x<B.x;
}
int n,fx,fy,ex,ey,tot;
int x,y,ans;
bool isfind;
int main()
{
	freopen("loverfinding.in","r",stdin);
	freopen("loverfinding.out","w",stdout);
	scanf("%d",&n);
	scanf("%d%d%d%d",&fx,&fy,&end.x,&end.y);
	p[++tot].x=fx;p[tot].y=fy;
	if(p[tot].x==end.x&p[tot].y==end.y){puts("1");return 0;}
	for(int i=1;i<=n;i++){
		scanf("%d%d",&x,&y);
		++tot;
		p[tot].x=p[tot-1].x+x;
		p[tot].y=p[tot-1].y+y;
		if(p[tot].x==end.x&&p[tot].y==end.y){isfind=true;break;}
	}
	if(!isfind){puts("SingleDogMZX");return 0;}
	sort(p+1,p+tot+1,cmp);
	for(int i=1;i<=tot;i++)
		if(i==1||p[i].x!=p[i-1].x||p[i].y!=p[i-1].y)ans++;
	
	printf("%d\n",ans);
	fclose(stdin);fclose(stdout);
	return 0;
}