博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
TOJ2712: Atlantis
阅读量:7239 次
发布时间:2019-06-29

本文共 1958 字,大约阅读时间需要 6 分钟。

小数据求面积并

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

这个直接用了二分查询,但是复杂度还是蛮高的

 

#include
using namespace std;const int N=205;const double eps=1e-8;int n,vis[N],t;double has[N];struct line{ double l,r,y; int f; line(){} line(double l,double r,double y,int f):l(l),r(r),y(y),f(f){}}L[N];bool cmp(line a,line b){ return a.y
eps)has[t++]=has[i]; double res=0; for(i=0; i
0)len+=has[j+1]-has[j]; if(i)res+=len*(L[i].y-L[i-1].y); for(j=l;j

 

 

 

转载于:https://www.cnblogs.com/BobHuang/p/8698496.html

你可能感兴趣的文章
在cisco交换机上禁止某个特定MAC地址转发
查看>>
Exchange 2010之灾难恢复
查看>>
我的友情链接
查看>>
Mac commands
查看>>
关于清理distribution数据库过期数据
查看>>
VMware Horizon View 7: Create Events Database [Part 3]
查看>>
我的友情链接
查看>>
深入解析thinkphp中的addAll方法
查看>>
SSD上如何进行数据保护?
查看>>
Linux基础之文件系统简介及其系统管理工具
查看>>
我的友情链接
查看>>
PutText 在图像上显示文字
查看>>
我的友情链接
查看>>
Juniper T320 Control Board 0更换步骤
查看>>
我的友情链接
查看>>
git安装
查看>>
sphinx 全文搜索应用(二)
查看>>
mysql存储引擎MyISAM与InnoDB的优劣
查看>>
集群与负载均衡技术的区别
查看>>
Android开发工具
查看>>