计算几何-hdoj-1086

简介: You can Solve a Geometry Problem too Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 7027    Accepted Submission(s): 3397Problem Descript

You can Solve a Geometry Problem too

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 7027    Accepted Submission(s): 3397

Problem Description
Many geometry(几何)problems were designed in the ACM/ICPC. And now, I also prepare a geometry problem for this final exam. According to the experience of many ACMers, geometry problems are always much trouble, but this problem is very easy, after all we are now attending an exam, not a contest :)
Give you N (1<=N<=100) segments(线段), please output the number of all intersections(交点). You should count repeatedly if M (M>2) segments intersect at the same point.
Note:
You can assume that two segments would not intersect at more than one point.
Input
Input contains multiple test cases. Each test case contains a integer N (1=N<=100) in a line first, and then N lines follow. Each line describes one segment with four float values x1, y1, x2, y2 which are coordinates of the segment’s ending.
A test case starting with 0 terminates the input and this test case is not to be processed.
Output
For each case, print the number of intersections, and one line one case.
Sample Input
 
 
2 0.00 0.00 1.00 1.00 0.00 1.00 1.00 0.00 3 0.00 0.00 1.00 1.00 0.00 1.00 1.00 0.000 0.00 0.00 1.00 0.00 0
 
Sample Output
1
3
 
微笑大意:给出若干线段,计算交点个数。多条线段交于一点,需要重复计算。端点相交也算线段相交。
目录
相关文章
|
11月前
hdoj 3555 BOMB(数位dp)
hdoj 3555 BOMB(数位dp)
30 0
|
11月前
|
算法
hdoj 4712 Hamming Distance(靠人品过的)
在信息论中,两个等长字符串之间的汉明距离是两个字符串对应位置的字符不同的个数。换句话说,它就是将 一个字符串变换成另外一个字符串所需要替换的字符个数。
31 0
|
算法
HDOJ 1330 Deck(叠木块-物理题啊!贪心算法用到了一点)
HDOJ 1330 Deck(叠木块-物理题啊!贪心算法用到了一点)
181 0
HDOJ 1330 Deck(叠木块-物理题啊!贪心算法用到了一点)
|
C语言
HDOJ/HDU Tempter of the Bone(深搜+奇偶性剪枝)
HDOJ/HDU Tempter of the Bone(深搜+奇偶性剪枝)
94 0
HDOJ 2080 夹角有多大II
HDOJ 2080 夹角有多大II
90 0
HDOJ 1995 汉诺塔V
HDOJ 1995 汉诺塔V
114 0
|
人工智能 算法
HDOJ2063过山车 匈牙利算法
HDOJ2063过山车 匈牙利算法
110 0