21002_Atlantis

2022-5-16 18:18| 发布者: Hocassian| 查看: 46| 评论: 0|原作者: 肇庆学院ACM合集

摘要:
C:\Users\Administrator\Downloads\2019-10-12-10-14-3-89504744654400-Problem List-采集的数据-后羿采集器.html

Pro.ID

21002

Title

Atlantis

Title链接

http://10.20.2.8/oj/exercise/problem?problem_id=21002

AC

8

Submit

1650

Ratio

0.48%

时间&空间限制

  • Time Limit: 1000/500 MS (Java/Others)     Memory Limit: 32768/32768 K (Java/Others)
  • 描述

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

    输出

    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

    样例输入

    2
    10 10 20 20
    15 15 25 25.5
    0

    样例输出

    Test case #1
    Total explored area: 180.00

    作者


    路过

    雷人

    握手

    鲜花

    鸡蛋

    最新评论

    返回顶部