记录编号 359654 评测结果 AWWWWTWTWTA
题目名称 激光 最终得分 18
用户昵称 GravatarMealy 是否通过 未通过
代码语言 C++ 运行时间 3.009 s
提交时间 2016-12-23 22:30:49 内存使用 0.39 MiB
显示代码纯文本
#include <iostream>
#include <cstdio>


using namespace std;

const int nmax=10086;

int n;

class point
{
public:
	int x,y;
};

point s,e;
point poi[nmax];


void PreDo()
{
	scanf("%d%d%d%d%d",&n,&s.x,&s.y,&e.x,&e.y);
	if(s.x==e.x||s.y==e.y)
	{
		printf("0\n");
		return ;
	}
	for(int i=1;i<=n;i++)
	{
		scanf("%d%d",&poi[i].x,&poi[i].y);
		if((poi[i].x==s.x&&poi[i].y==e.y)||(poi[i].y==s.y&&poi[i].x==e.x))
		{
			printf("1\n");
			return ;
		}
	}
}


int main()
{
	freopen("lasers.in","r",stdin);
	freopen("lasers.out","w",stdout);
	PreDo();
	return 0;
}


/*

2578. 激光

★   输入文件:lasers.in

*/