程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> HDU1542_Atlantis(掃描線/線段樹+離散)

HDU1542_Atlantis(掃描線/線段樹+離散)

編輯:C++入門知識

HDU1542_Atlantis(掃描線/線段樹+離散)


解題報告

題目傳送門

題意:

求矩形並面積。

思路:

離散+線段樹+掃描線。

#include 
#include 
#include 
#include 

using namespace std;
struct Seg {
    int v;
    double h,lx,rx;
    friend bool operator < (Seg a,Seg b) {
        return a.hr||qr

Atlantis

Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 6942 Accepted Submission(s): 3046


Problem 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 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
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 Mid-Central European Regional Contest 2000

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved