ZOJ1128(Atlantis)

Atlantis

Time Limit: 1 Second      Memory Limit: 32768 KB

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 file 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 it1.


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

#include <iostream>
#include 
<cstdio>
#include 
<algorithm>
using namespace std;
const int N = 105;
typedef 
struct
{
    
double x1, y1;
    
double x2, y2;
}
Point;

Point pp[N];
int n, m;
double px[2 * N], py[2 * N];

bool cmp(Point a, Point b)
{
    
if(a.x1 != b.x1)
        
return a.x1 < b.x1;
    
else
        
return a.y1 < b.y1;
}


bool check(double x1, double y1, double x2, double y2)
{

    
for(int i = 0; i < n; i++)
        
if(pp[i].x1 <= x1 && pp[i].y1 <= y1)
            
if(pp[i].x2 >= x2 && pp[i].y2 >= y2)
                
return true;
    
return false;

}


int main()
{
    
int T, i, j, k;
    
int cnt = 1;
    
double ans;
    
while(scanf("%d"&n) && n)
    
{
        
for(i = 0, k = 0; i < n; i++)
        
{
            scanf(
"%lf%lf%lf%lf"&pp[i].x1, &pp[i].y1, &pp[i].x2, &pp[i].y2);
            px[k] 
= pp[i].x1; py[k] = pp[i].y1;
            k
++;
            px[k] 
= pp[i].x2; py[k] = pp[i].y2;
            k
++;
        }

        m 
= 2 * n;
        sort(pp, pp 
+ n, cmp);
        sort(px, px 
+ m);
        sort(py, py 
+ m);
        ans 
= 0.0;

        
for(i = 1; i < m; i++)
            
for(j = 1; j < m; j++)
            
{
                
if(px[i] == px[i - 1])
                    
break;
                
else if(py[j] == py[j - 1])
                    
continue;//此时不可能产生面积

                
if(check(px[i - 1], py[j - 1], px[i], py[j]))
                    ans 
+= (py[j] - py[j - 1]) * (px[i] - px[i - 1]);

            }

        printf(
"Test case #%d\n",cnt++);
        printf(
"Total explored area: %.2lf\n", ans);
        putchar(
'\n');
    }

 
return 0;
}

posted on 2009-04-27 13:03  Xredman  阅读(277)  评论(0编辑  收藏  举报

导航