sicily 1004 I Conduit!

Description

Irv Kenneth Diggit works for a company that excavates trenches, digs holes and generally tears up people's yards. Irv's job is to make sure that no underground pipe or cable is underneath where excavation is planned. He has several different maps, one for each utility company, showing where their conduits lie, and he needs to draw one large, consolidated map combining them all. One approach would be to simply draw each of the smaller maps one at a time onto the large map. However, this often wastes time, not to mention ink for the pen-plotter in the office, since in many cases portions of the conduits overlap with each other (albeit at different depths underground). What Irv wants is a way to determine the minimum number of line segments to draw given all the line segments from the separate maps.

Input

Input will consist of multiple input sets. Each set will start with a single line containing a positive integer n indicating the total number of line segments from all the smaller maps. Each of the next n lines will contain a description of one segment in the format x1 y1 x2 y2 where (x1,y1) are the coordinates of one endpoint and (x2,y2) are the coordinates of the other. Coordi- nate values are floating point values in the range 0... 1000 specified to at most two decimal places. The maximum number of line segments will be 10000 and all segments will have non-zero length. Following the last input set there will be a line containing a 0 indicating end of input; it should not be processed.

Output

For each input set, output on a single line the minimum number of line segments that need to be drawn on the larger, consolidated map.

Sample Input

3
1.0 10.0 3.0 14.0
0.0 0.0 20.0 20.0
10.0 28.0 2.0 12.0
2
0.0 0.0 1.0 1.0
1.0 1.0 2.15 2.15
2
0.0 0.0 1.0 1.0
1.0 1.0 2.15 2.16
0

Sample Output

2
1
2

分析:

本题比较水,主要要注意浮点数的相等判断处理,以及输入数据存储顺序的整理,然后排序统计即可。特别注意的是,本题的数据是线段,不是直线,所以能否合并要判断两条共线线段的相邻端点;还有点斜式无法表示垂直于x轴的直线,这里不妨设它斜率为正无穷(赋个很大的数即可),同时端点判断也要特殊处理。

代码:

 1 // Problem#: 1004
 2 // Submission#: 1792749
 3 // The source code is licensed under Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License
 4 // URI: http://creativecommons.org/licenses/by-nc-sa/3.0/
 5 // All Copyright reserved by Informatic Lab of Sun Yat-sen University
 6 #include <iostream>
 7 #include <algorithm>
 8 #include <cmath>
 9 using namespace std;
10 
11 #define MAX 10000
12 #define INF 1000000
13 #define ESP 1e-6
14 
15 struct node{
16     double x1,y1,x2,y2;
17     double k,b;
18 }buffer[MAX];
19 
20 inline bool dcmp( double a, double b ){
21     return ( fabs(a-b)<=ESP );
22 }
23 
24 inline double max( double a, double b ){
25     return a>b?a:b;
26 }
27 
28 inline void swap( double &a, double &b ){
29     double t = a;
30     a = b;
31     b = t;
32 }
33 
34 inline bool cmp( node a, node b ){
35     if( !dcmp(a.k,b.k) ) return a.k<b.k;
36     if( !dcmp(a.b,b.b) ) return a.b<b.b;
37     if( !dcmp(a.x1,b.x1) ) return a.x1<b.x1;
38     if( !dcmp(a.y1,b.y1) ) return a.y1<b.y1;
39     if( !dcmp(a.x2,b.x2) ) return a.x2<b.x2;
40     return a.y2<b.y2;
41 }
42 
43 inline bool judge( node a, node b ){
44     if( dcmp(a.k,b.k) && dcmp(a.b,b.b) ){
45         if( dcmp(a.k,INF) ) return dcmp(b.y1,a.y2) || b.y1<a.y2;
46         else return  dcmp(a.x2,b.x1) || a.x2>b.x1;
47     }
48     return false;
49 }
50 
51 int main(){
52     int n,re;
53     while( cin>>n && n ){
54         re = n;
55         for( int i=0 ; i<n ; i++ ){
56             cin >> buffer[i].x1 >> buffer[i].y1 >> buffer[i].x2 >> buffer[i].y2;
57             bool flag = dcmp(buffer[i].x1,buffer[i].x2);
58             if( flag && buffer[i].y1>buffer[i].y2 ) swap(buffer[i].y1,buffer[i].y2);
59             else if( !flag && buffer[i].x1>buffer[i].x2 ){
60                 swap(buffer[i].x1,buffer[i].x2);
61                 swap(buffer[i].y1,buffer[i].y2);
62             }
63             buffer[i].k = flag ? INF : (buffer[i].y2-buffer[i].y1) / (buffer[i].x2-buffer[i].x1);
64             buffer[i].b = flag ? buffer[i].x1 : buffer[i].y1-buffer[i].k*buffer[i].x1;
65         }
66         sort(buffer,buffer+n,cmp);
67         for( int i=0 ; i<n-1 ; i++ ){
68             if( judge(buffer[i],buffer[i+1]) ){
69                 re--;
70                 if( dcmp(buffer[i].k,INF) ) buffer[i+1].y2 = max(buffer[i].y2,buffer[i+1].y2);
71                 else
72                     buffer[i+1].x2 = max(buffer[i].x2,buffer[i+1].x2);
73             }
74         }
75         cout << re << endl;
76     }
77     return 0;
78 }                                 
原文地址:https://www.cnblogs.com/ciel/p/2876770.html