CF498A.Crazy Town
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Crazy Town is a plane on which there are n infinite line roads. Each road is defined by the equation aix+biy+ci=0 , where ai and bi are not both equal to the zero. The roads divide the plane into connected regions, possibly of infinite space. Let's call each such region a block. We define an intersection as the point where at least two different roads intersect.
Your home is located in one of the blocks. Today you need to get to the University, also located in some block. In one step you can move from one block to another, if the length of their common border is nonzero (in particular, this means that if the blocks are adjacent to one intersection, but have no shared nonzero boundary segment, then it are not allowed to move from one to another one in one step).
Determine what is the minimum number of steps you have to perform to get to the block containing the university. It is guaranteed that neither your home nor the university is located on the road.
输入格式
The first line contains two space-separated integers x1 , y1 ( −106<=x1,y1<=106 ) — the coordinates of your home.
The second line contains two integers separated by a space x2 , y2 ( −106<=x2,y2<=106 ) — the coordinates of the university you are studying at.
The third line contains an integer n ( 1<=n<=300 ) — the number of roads in the city. The following n lines contain 3 space-separated integers ( −106<=ai,bi,ci<=106 ; |a_{i}|+|b_{i}|>0 ) — the coefficients of the line aix+biy+ci=0 , defining the i -th road. It is guaranteed that no two roads are the same. In addition, neither your home nor the university lie on the road (i.e. they do not belong to any one of the lines).
输出格式
Output the answer to the problem.
输入输出样例
输入#1
1 1 -1 -1 2 0 1 0 1 0 0
输出#1
2
输入#2
1 1 -1 -1 3 1 0 0 0 1 0 1 1 -3
输出#2
2
说明/提示
Pictures to the samples are presented below (A is the point representing the house; B is the point representing the university, different blocks are filled with different colors):