CodeForces 499C、Crazy Town
題目:
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; |ai|?+?|bi|?>?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.
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):
題意:給出兩個(gè)點(diǎn),求兩個(gè)點(diǎn)之間有多少條直線,給出直線方程ax+by+c
思路:把一個(gè)點(diǎn)代入一條直線方程中,有3種結(jié)果:大于0,在這條直線上方;小于0,在這條直線下方;等于0 ,在直線上。如果兩個(gè)點(diǎn)代入直線,一個(gè)大于0一個(gè)小于0,說(shuō)明這條直線在兩個(gè)點(diǎn)中間。故求兩點(diǎn)之間有多少直線,只要一一代入直線方程就行
code:
#include<stdio.h> typedef long long ll; int main() {ll x1,x2,y1,y2,a,b,c,n,l1,l2,num;while(~scanf("%lld%lld%lld%lld%lld",&x1,&y1,&x2,&y2,&n)){num=0;while(n--){scanf("%lld%lld%lld",&a,&b,&c);l1=a*x1+b*y1+c;l2=a*x2+b*y2+c;if((l1>0&&l2<0)||(l1<0&&l2>0)) num++;}printf("%lld\n",num);}return 0; }總結(jié)
以上是生活随笔為你收集整理的CodeForces 499C、Crazy Town的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: 高清视频录制工具(Bandicam)v2
- 下一篇: html tr固定行高列宽,HTML表格