ZOJ3238 Water Ring(计算几何)
题意:给你一个圆形和很多个矩形,然后要你求圆形的圆周有多少被矩形覆盖。
思路:比赛的时候是有思路的了,不过一直在调别的题,最后剩下30分钟肯定来不及敲。想法是这样的,要是我们可以求出每个矩形覆盖了圆周的哪些区间,我们最后就对这些区间排序然后求区间和就好了,但是问题是怎么知道哪些区间是要的,哪些区间是不要的呢? 首先我们对矩形的四条线段和矩形求交,把所有的交点求出来,然后将交点用atan2转化成极角(我用的区间是[0,2pi]),实际上直接用极角肯定也没问题吧),然后排序,排序之后我们会发现我们要的区间一定是相邻的两个角度的点对应的区间,但是有可能这些区间是不是我们要的,判断的条件就是两个角度的对应的弧段的中点如果在矩形里面的话我们就将这个区间保留。
如此一来就将所有的区间弄了出来,接下来就是求线段的并的总长度了,for一下就好。
但是后来WA了一发,原因是如果圆完全被矩形包含的话,我们解不出交点,会被默认答案是0,所以上面的方法只有在有交点的时候成立,所以判的时候加多一个判是否被完全包含,被完全包含最后直接输出2*pi*r就好,代码写的略长= =
#pragma warning(disable:4996)
#include<iostream>
#include<cstring>
#include<cstdio>
#include<algorithm>
#include<vector>
#include<cmath>
#include<string>
#define maxn 150
#define eps 1e-7
using namespace std; const double pi = acos(-1.0); struct Point
{
double x, y;
Point(double xi, double yi) :x(xi), y(yi){}
Point(){}
Point operator + (const Point &b){
return Point(x + b.x, y + b.y);
}
Point operator - (const Point &b){
return Point(x - b.x, y - b.y);
}
double ang(){
double res=atan2(y,x);
if (res < 0) return res + 2*pi;
else return res;
}
Point rot(double ag){
return Point(x*cos(ag) - y*sin(ag), x*sin(ag) + y*cos(ag));
}
}; struct Seg
{
Point st, ed;
Seg(Point sti, Point edi) :st(sti), ed(edi){}
Seg(){}
}; struct Inter
{
double l, r;
Inter(double li, double ri) :l(li), r(ri){}
Inter(){}
bool operator < (const Inter &b) const{
if (l == b.l) return r < b.r;
else return l < b.l;
}
}; int dcmp(double x){
return (x>eps) - (x < -eps);
} double ctr;
int n; vector<double> getInterSection(Seg seg){
vector<double> res;
if (seg.st.x == seg.ed.x){
double xx = seg.st.x;
double y1 = seg.st.y, y2 = seg.ed.y;
if (dcmp(abs(xx) - ctr) > 0) return res;
else if (dcmp(abs(xx) - ctr) == 0){
if (0 >= y1 && 0 <= y2){
res.push_back(Point(xx, 0).ang());
}
}
else{
double dy = sqrt(ctr*ctr - xx*xx);
if (dy >= y1&&dy <= y2){
res.push_back(Point(xx, dy).ang());
}
dy = -dy;
if (dy >= y1&&dy <= y2){
res.push_back(Point(xx, dy).ang());
}
}
}
else{
double yy = seg.st.y;
double x1 = seg.st.x, x2 = seg.ed.x;
if (dcmp(abs(yy) - ctr) > 0) return res;
else if (dcmp(abs(yy) - ctr) == 0){
if (0 >= x1 && 0 <= x2){
res.push_back(Point(0, yy).ang());
}
}
else{
double dx = sqrt(ctr*ctr - yy*yy);
if (dx >= x1&&dx <= x2){
res.push_back(Point(dx, yy).ang());
}
dx = -dx;
if (dx >= x1&&dx <= x2){
res.push_back(Point(dx, yy).ang());
}
}
}
return res;
} bool withinRect(double xx,double yy, double li, double lj, double ri, double rj){
return xx >= li&&xx <= ri&&yy >= lj&&yy <= rj;
} int main()
{
while (cin >> ctr >> n){
double li, lj, ri, rj;
Seg seg;
vector<double> tot;
vector<double> tmp;
vector<Inter> inter; bool flag = false;
for (int i = 0; i < n; i++){
scanf("%lf%lf%lf%lf", &li, &lj, &ri, &rj);
if (flag) continue;
if (li <= -ctr && ctr <= ri && lj <= -ctr&&ctr <= rj){
flag = true; continue;
}
tot.clear();
seg.st = Point(li, lj); seg.ed = Point(li, rj);
tmp = getInterSection(seg);
tot.insert(tot.end(), tmp.begin(), tmp.end()); seg.st = Point(ri, lj); seg.ed = Point(ri, rj);
tmp = getInterSection(seg);
tot.insert(tot.end(), tmp.begin(), tmp.end()); seg.st = Point(li, lj); seg.ed = Point(ri, lj);
tmp = getInterSection(seg);
tot.insert(tot.end(), tmp.begin(), tmp.end()); seg.st = Point(li, rj); seg.ed = Point(ri, rj);
tmp = getInterSection(seg);
tot.insert(tot.end(), tmp.begin(), tmp.end()); sort(tot.begin(), tot.end());
int siz = tot.size();
for (int k = 0; k < siz; k++){
if (dcmp(tot[k] - tot[(k + 1) % siz]) == 0) continue;
Point mid;
if (dcmp(tot[(k + 1) % siz] - tot[k])>0) mid = Point(ctr, 0).rot((tot[k] + tot[(k + 1) % siz]) / 2);
else mid = Point(ctr, 0).rot((tot[k] + tot[(k + 1) % siz]-2*pi) / 2);
if (withinRect(mid.x, mid.y, li, lj, ri, rj)){
if (dcmp(tot[(k + 1) % siz] - tot[k]) >= 0){
inter.push_back(Inter(tot[k], tot[(k + 1) % siz]));
}
else{
inter.push_back(Inter(0, tot[(k+1)%siz]));
inter.push_back(Inter(tot[k % siz], 2 * pi));
}
}
}
}
sort(inter.begin(), inter.end());
double ans = 0;
if (flag) {
printf("%.3lf\n", 2 * pi*ctr); continue;
}
if (inter.size() == 0) {
printf("%.3lf\n", ans); continue;
}
double lt = inter[0].l, rt = inter[0].r;
for (int i = 1; i < inter.size(); i++){
if (inter[i].l <= rt){
rt = max(rt, inter[i].r);
}
else{
ans += rt - lt;
lt = inter[i].l, rt = inter[i].r;
}
}
ans += rt - lt;
printf("%.3lf\n", ans*ctr);
}
return 0;
}
ZOJ3238 Water Ring(计算几何)的更多相关文章
- 【计算几何】Water Testing
Water Testing 题目描述 You just bought a large piece of agricultural land, but you noticed that – accord ...
- 一点公益商城开发系统模式Ring Buffer+
一个队列如果只生产不消费肯定不行的,那么如何及时消费Ring Buffer的数据呢?简单的方案就是当Ring Buffer"写满"的时候一次性将数据"消费"掉. ...
- OpenCASCADE Ring Type Spring Modeling
OpenCASCADE Ring Type Spring Modeling eryar@163.com Abstract. The general method to directly create ...
- 使用Ring Buffer构建高性能的文件写入程序
最近常收到SOD框架的朋友报告的SOD的SQL日志功能报错:文件句柄丢失.经过分析得知,这些朋友使用SOD框架开发了访问量比较大的系统,由于忘记关闭SQL日志功能所以出现了很高频率的日志写入操作,从而 ...
- [AlwaysOn Availability Groups]AlwaysOn Ring Buffers
AlwaysOn Ring Buffers 一些AlwaysOn的诊断信息可以从SQL Server ring buffers.或者从sys.dm_os_ring_buffers.ring buffe ...
- [LeetCode] Pacific Atlantic Water Flow 太平洋大西洋水流
Given an m x n matrix of non-negative integers representing the height of each unit cell in a contin ...
- [LeetCode] Trapping Rain Water II 收集雨水之二
Given an m x n matrix of positive integers representing the height of each unit cell in a 2D elevati ...
- [LeetCode] Water and Jug Problem 水罐问题
You are given two jugs with capacities x and y litres. There is an infinite amount of water supply a ...
- [LeetCode] Trapping Rain Water 收集雨水
Given n non-negative integers representing an elevation map where the width of each bar is 1, comput ...
随机推荐
- Python学习教程(learning Python)--1.2.4 Python格式化输出科学计数
Python在浮点数据输出时,可以采用科学计数法的方式输出. 现举两个例子说明一下如何使用. eg1. 无精度要求的科学计数法浮点数据输出 >>> print(format(1234 ...
- 每日一练--C语言--串
目标 实现串的经典模式匹配算法与KMP算法. 简述 自定义串结构: 串采用定长顺序存储结构,串从下标1开始存储,0下标存储串的实际长度: 匹配成功返回匹配位置,匹配失败返回0. #include &l ...
- Java 控制台执行带自定义包定义的类,出现“Exception in thread "main" java.lang.NoClassDefFoundError: ConnectSQLServer (wrong name: sine/ConnectSQLServer)”
1.先说明一下代码实现:自定义package sine, 源代码保存路径为:E:\JSP\HibernateDemo\HibernateDemoProject\src\sine\ConnectSQLS ...
- 算法系列3《SHA》
SHA是一种数据加密算法,该算法经过加密专家多年来的发展和改进已日益完善,现在已成为公认的最安全的散列算法之一,并被广泛使用.该算法的思想是接收一段明文,然后以一种不可逆的方式将它转换成一段(通常更小 ...
- .NET开源工作流RoadFlow-流程设计-流转条件设置(路由)
当一个步骤后面有多个步骤时,可以设置为根据设置条件系统自动判断该流向哪些步骤,也叫路由. roadflow没有单独的路由步骤来设置条件,流程条件通过双击连线弹出条件设置框来设置. 1.sql条件 即通 ...
- eclipse创建android项目失败的问题 [ android support library ]
有根筋搭错了,想起来android应用开发???? 放下两年的手机应用开发,昨天有更新了android SDK, 重新搭建开发环境. 这两年android 变化真TM的大............... ...
- iOS-打包成ipa
第一步:模拟器选择栏,选择"Generic iOS Device ".早期版本需要断开手机连接,才可以找到. 第二步:选择"Product"菜单下的" ...
- Qt中的事件
1. 引自---http://blog.sina.com.cn/s/blog_6e80f1390100pro4.html 信号和事件的区别就在与,事件比信号更加底层,而且如果一个信号对应多个槽的话,信 ...
- Qt 读取txt文件乱码的解决办法
Qt 读取txt文本乱码问题 2015-05-20 15:46 方法一:使用QString的fromLocal8Bit()函数 复制代码 QFile txtfile(filePath); ...
- 关于sqlserver身份登录失败的解决方法
前几天写程序需要用到数据库,下载了一个用用,出现了不少的小问题(都怪我的32bit不争气的笔记本),有问题不要怕,至少证明我们在思考解决方案.废话不说了,直接上正题. Sqlserver有两种登陆方式 ...