【POJ1151】【扫描线+线段树】Atlantis

本文介绍了一个计算多个地图覆盖总面积的问题解决方法,通过扫描线算法和离散化处理,有效地求解了不同地图区域的并集面积。

Description

There are several ancient Greek texts that contain descriptions of the fabled island Atlantis. Some of these texts even include maps of parts of the island. But unfortunately, these maps describe different regions of Atlantis. Your friend Bill has to know the total area for which maps exist. You (unwisely) volunteered to write a program that calculates this quantity.

Input

The input consists of several test cases. Each test case starts with a line containing a single integer n (1 <= n <= 100) of available maps. The n following lines describe one map each. Each of these lines contains four numbers x1;y1;x2;y2 (0 <= x1 < x2 <= 100000;0 <= y1 < y2 <= 100000), not necessarily integers. The values (x1; y1) and (x2;y2) are the coordinates of the top-left resp. bottom-right corner of the mapped area. 
The input file is terminated by a line containing a single 0. Don't process it.

Output

For each test case, your program should output one section. The first line of each section must be "Test case #k", where k is the number of the test case (starting with 1). The second one must be "Total explored area: a", where a is the total explored area (i.e. the area of the union of all rectangles in this test case), printed exact to two digits to the right of the decimal point. 
Output a blank line after each test case.

Sample Input

2
10 10 20 20
15 15 25 25.5
0

Sample Output

Test case #1
Total explored area: 180.00 

Source

【分析】
扫描线的基本应用,离散化一下按横坐标从左到右扫就行了。
  1 /*
  2 元稹
  3 《离思五首·其四》
  4 
  5 曾经沧海难为水,除却巫山不是云。
  6 取次花丛懒回顾,半缘修道半缘君。
  7 */
  8 #include <iostream>
  9 #include <cstdio>
 10 #include <algorithm>
 11 #include <cstring>
 12 #include <vector>
 13 #include <utility>
 14 #include <iomanip>
 15 #include <string>
 16 #include <cmath>
 17 #include <queue>
 18 #include <assert.h>
 19 #include <map>
 20 #include <ctime>
 21 #include <cstdlib>
 22 #include <stack>
 23 #define LOCAL
 24 const int MAXN = 10000 + 10;
 25 const int MAXM = 75 + 10;
 26 const int INF = 100000000;
 27 const int SIZE = 450;
 28 const int maxnode =  0x7fffffff + 10;
 29 using namespace std;
 30 struct Line{//扫描线
 31        int flag;//表示是出线还是入线
 32        double x, y1, y2;
 33        
 34        Line (double a, double b, double c, double d){
 35             flag = (int)d;
 36             x = a;
 37             y1 = b;
 38             y2 = c; 
 39        } 
 40        bool operator < (const Line &b)const{
 41             return x < b.x;
 42        };
 43 };
 44 struct Seg_Tree{
 45        struct Node{
 46               int l, r, flag;
 47               double ll, rr, len;
 48        }tree[2000];
 49        vector<double>y, data;
 50        vector<Line>line;
 51        map<double, int>Map;//离散化
 52        
 53        void update(int t, int s, int e, int val){
 54             int l = tree[t].l, r = tree[t].r;
 55             if ((l + 1) == r) {
 56                tree[t].flag += val;
 57                if (tree[t].flag == 0) tree[t].len = 0;
 58                else tree[t].len = tree[t].rr - tree[t].ll;
 59             }
 60             else{
 61                  int mid = (l + r)>>1;
 62                  if (s < mid) update(t << 1, s, e, val);
 63                  if (e > mid) update((t << 1) | 1, s, e, val);
 64                  tree[t].len = tree[t << 1].len + tree[(t << 1) | 1].len;
 65                  
 66             }
 67        }
 68        void build(int t, int l, int r){
 69             tree[t].l = l;
 70             tree[t].r = r;
 71             tree[t].flag = 0;
 72             tree[t].len = 0;
 73             //这两个是代表真实的值 
 74             tree[t].ll = y[l];
 75             tree[t].rr = y[r];
 76             if ((l + 1) == r) return;
 77             //左闭右开 
 78             int mid = (l + r)>>1;
 79             build((t<<1), l, mid);
 80             build((t<<1) | 1, mid, r);
 81        }
 82        void init(){
 83             Map.clear();;
 84             line.clear();
 85             y.clear();
 86             data.clear();
 87        }
 88 }A;
 89 int n;
 90 
 91 void init(){
 92      A.init();
 93      for (int i = 1; i <= n; i++){
 94          double x1, x2, y1, y2;
 95          scanf("%lf%lf%lf%lf", &x1, &y1, &x2, &y2);
 96          A.line.push_back(Line(x1, y1, y2, 1));//1代表入线
 97          A.line.push_back(Line(x2, y1, y2, -1));
 98          A.data.push_back(y1);
 99          A.data.push_back(y2); 
100      }
101      int cnt = 0;//离散化
102      sort(A.data.begin(), A.data.end());
103      for (int i = 0; i < A.data.size(); i++){
104          if (i == 0 || A.data[i] != A.data[i - 1]){
105             A.Map[A.data[i]] = cnt++;
106             A.y.push_back(A.data[i]); 
107          }
108      } 
109 }
110 void work(){
111      sort(A.line.begin(), A.line.end());
112      A.build(1, 0, A.y.size() - 1);
113      double Ans = 0;
114      for (int i = 0; i < A.line.size(); i++){
115          if (i != 0) Ans += (A.line[i].x - A.line[i - 1].x) * A.tree[1].len;
116          A.update(1, A.Map[A.line[i].y1], A.Map[A.line[i].y2], A.line[i].flag);
117      }
118      printf("Total explored area: %.2lf\n\n" , Ans);
119 }
120 
121 int main(){
122     
123     int t = 0;
124     while (scanf("%d", &n) && n){
125           printf("Test case #%d\n", ++t);
126           init();
127           work();
128     }
129     return 0;
130 }
View Code

 

转载于:https://www.cnblogs.com/hoskey/p/4334247.html

评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符  | 博主筛选后可见
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值