记录编号 |
326399 |
评测结果 |
AAAAAAAAAA |
题目名称 |
为爱追寻 |
最终得分 |
100 |
用户昵称 |
安呐一条小咸鱼。 |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
7.852 s |
提交时间 |
2016-10-21 07:43:54 |
内存使用 |
6.35 MiB |
显示代码纯文本
#include<cstdio>
#include<set>
#include<iostream>
#include<cstdlib>
#include<algorithm>
using namespace std;
int bx,by,ex,ey,n,x,y,tot,ans;
struct Node{
int x,y;
Node(int a=0,int b=0): x(a) , y(b) {} ;
bool operator <(const Node &w) const{
if(w.x!=x)return w.x<x;
else return w.y<y;
}
bool operator ==(const Node &a)const{
return a.x==x&&a.y==y;
}
}q[1000100];
int main(){
freopen("loverfinding.in","r",stdin);
freopen("loverfinding.out","w",stdout);
scanf("%d%d%d%d%d",&n,&bx,&by,&ex,&ey);
if(bx==ex&&by==ey){puts("1");return 0;}
q[++tot] = Node(bx,by);
for(int i=1;i<=n;i++)
{
scanf("%d%d",&x,&y);
bx+=x,by+=y;
q[++tot] = Node(bx,by);
if( bx == ex && by == ey )
{
goto END ;
}
}
printf("SingleDogMZX\n");
END:
sort(q+1,q+1+tot);
for(int i=1;i<=tot;i++){
if( i == 1 || !(q[i]==q[i-1]) )ans++;
}
printf("%d\n",ans);
return 0;
}