1242. Atlantis

单点时限: 3.0 sec

内存限制: 256 MB

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.

输入格式

The input file consists of several test cases. Each test case starts with a line containing a single integer $n$ $(1 \le n \le 100)$ of available maps. The $n$ following lines describe one map each. Each of these lines contains four numbers $x_1,y_1,x_2,y_2$ $(0 \le x1 < x2 \le 100~000, 0 \le y1 < y2 \le 100~000)$, not necessarily integers. The values $(x_1, y_1)$ and $(x_2,y_2)$ 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!

输出格式

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.

样例

Input
2
10 10 20 20
15 15 25 25.5
0
Output
Test case #1
Total explored area: 180.00

8 人解决,12 人已尝试。

10 份提交通过,共有 26 份提交。

6.4 EMB 奖励。

创建: 16 年,10 月前.

修改: 6 年,6 月前.

最后提交: 3 年,5 月前.

来源: ACM ICPC Mid-Central European 2000

题目标签