比赛 |
模拟训练 |
评测结果 |
AAAAAAAAAA |
题目名称 |
为爱追寻 |
最终得分 |
100 |
用户昵称 |
31627012 |
运行时间 |
7.582 s |
代码语言 |
C++ |
内存使用 |
8.33 MiB |
提交时间 |
2017-06-15 20:33:37 |
显示代码纯文本
#include<bits/stdc++.h>
#include<set>
#define COGS
using namespace std;
const int maxn=1000010;
typedef pair<int,int> point;
int n,tox,toy,x,y,ans=1,temp1,temp2,cnt;
set <point> s;
point a[maxn];
inline void in(){
#ifdef COGS
freopen("loverfinding.in","r",stdin);
freopen("loverfinding.out","w",stdout);
#endif
scanf("%d%d%d%d%d",&n,&x,&y,&tox,&toy);
}
inline void add(int x,int y){
s.insert(make_pair(x,y));
//a[++cnt]=make_pair(x,y);
}
inline void deal(){
add(x,y);
while (n--){
scanf("%d%d",&temp1,&temp2);
x+=temp1,y+=temp2;
add(x,y);
if (x==tox&&y==toy) break;
}
sort(a+1,a+cnt+1);
ans=unique(a+1,a+cnt+1)-a-1;
}
inline void p(){
printf("%d",s.size());
}
int Main(){
in();
deal();
p();
return 0;
}
int main(){;}
int xlm=Main();