bzoj 2178
这题调精度真痛苦啊(向管理员要了数据才调出来)。
用的是hwd在WC2015上讲的方法,考虑将原图分割,根据每个圆的左右边界和圆与圆交点的横坐标来分割,这样原图就被分成很多竖着的长条,并且每一条中间都没有交点,这样就有一个性质:每一条都是"弓形-梯形-弓形 弓形-梯形-弓形..."的形式,然后从一个方向开始,记录当前进入的圆的数量,每当出来就就计算面积。
/**************************************************************
Problem: 2178
User: idy002
Language: C++
Result: Accepted
Time:1248 ms
Memory:48560 kb
****************************************************************/ #include <cstdio>
#include <cstring>
#include <cmath>
#include <algorithm>
#define eps 1e-11
#define N 2010
using namespace std; inline int sg( long double x ) { return (x>-eps)-(x<eps); }
struct Vector {
long double x, y;
Vector(){}
Vector( long double x, long double y ):x(x),y(y){}
Vector operator+( const Vector & b ) const { return Vector(x+b.x,y+b.y); }
Vector operator-( const Vector & b ) const { return Vector(x-b.x,y-b.y); }
Vector operator*( long double b ) const { return Vector(x*b,y*b); }
Vector operator/( long double b ) const { return Vector(x/b,y/b); }
long double operator^( const Vector & b ) const { return x*b.y-y*b.x; }
long double operator&( const Vector & b ) const { return x*b.x+y*b.y; }
long double ang() { return atan2(y,x); }
long double len() { return sqrt(x*x+y*y); }
long double len2() { return x*x+y*y; }
};
typedef Vector Point;
struct Circle {
Point c;
long double r;
Circle(){}
Circle( Point c, long double r ):c(c),r(r){}
inline bool in( Point &p ) {
Vector vv=p-c;
return (vv.x*vv.x+vv.y*vv.y) < r*r*0.999;
}
Point pt( long double ang ) const {
return c+Vector(cos(ang),sin(ang))*r;
}
};
struct Arc {
int cid, type;
long double al, ar;
Point pa, pb;
Arc(){}
Arc( int cid, int type, const Point &a, const Point &b );
long double area();
}; int n;
bool del[N], has[N];
long double spt[N*N]; int stot;
Circle cir[N];
Arc arc[N+N]; bool cmp_arc( const Arc &a, const Arc &b ) {
if( sg(a.pa.y-b.pa.y)!= ) return sg(a.pa.y-b.pa.y)<;
if( sg(a.pb.y-b.pb.y)!= ) return sg(a.pb.y-b.pb.y)<;
if( a.type!=b.type ) return a.type>b.type;
if( a.type== ) {
return cir[a.cid].r < cir[b.cid].r;
} else {
return cir[a.cid].r > cir[b.cid].r;
}
}
bool cmp_cir_r( const Circle &a, const Circle &b ) { return a.r<b.r; }
Arc::Arc( int cid, int type, const Point &a, const Point &b ) {
this->cid = cid;
this->type = type;
pa = a;
pb = b;
this->al = (a-cir[cid].c).ang();
this->ar = (b-cir[cid].c).ang();
if( pa.x>pb.x ) swap(pa,pb);
}
long double Arc::area() {
long double da = ar-al;
while( sg(da)<= ) da+=M_PI+M_PI;
while( sg(da-M_PI-M_PI)> ) da-=M_PI+M_PI;
return (da-sin(da))*cir[cid].r*cir[cid].r/2.0;
}
int ccinter( int ca, int cb, Point *p ) {
if( cir[ca].r<cir[cb].r ) swap(ca,cb);
long double cd = (cir[ca].c - cir[cb].c).len2();
long double s1 = cir[ca].r-cir[cb].r;
long double s2 = cir[ca].r+cir[cb].r;
s1=s1*s1, s2=s2*s2; if( sg(cd-s1)< || sg(cd-s2)> ) return ;
if( sg(cd-s1)== || sg(cd-s2)== ) {
long double ang = (cir[cb].c-cir[ca].c).ang();
p[] = cir[ca].pt(ang);
return ;
}
long double r1 = cir[ca].r, r2 = cir[cb].r;
long double base = (cir[cb].c-cir[ca].c).ang();
long double delta = acos( (r1*r1+cd-r2*r2)/(2.0*r1*sqrt(cd)) );
p[] = cir[ca].pt( base-delta );
p[] = cir[ca].pt( base+delta );
return ;
}
bool clinter( int c, long double xl, long double xr, Arc *arc ) {
long double xlb = cir[c].c.x-cir[c].r;
long double xrb = cir[c].c.x+cir[c].r;
if( sg(xlb-xr)>= || sg(xrb-xl)<= ) return false;
Point p = cir[c].c;
long double r = cir[c].r;
long double d1, d2;
long double s1 = r*r-(p.x-xl)*(p.x-xl);
long double s2 = r*r-(p.x-xr)*(p.x-xr);
if( s1<0.0 ) s1=0.0;
if( s2<0.0 ) s2=0.0;
d1 = sqrt( s1 );
d2 = sqrt( s2 );
arc[] = Arc( c, -, Point(xr,p.y+d2), Point(xl,p.y+d1) );
arc[] = Arc( c, +, Point(xl,p.y-d1), Point(xr,p.y-d2) );
return true;
}
long double area( long double lf, long double rg ) {
int m=;
for( int i=; i<n; i++ )
if( clinter(i,lf,rg,arc+m) )
m += ;
sort( arc, arc+m, cmp_arc ); int cc = , top;
long double rt = 0.0;
for( int i=; i<m; i++ ) {
if( cc== )
top = i;
cc += arc[i].type;
if( cc== ) {
rt += (rg-lf)*((arc[i].pa+arc[i].pb).y-(arc[top].pa+arc[top].pb).y)/2.0;
rt += arc[top].area()+arc[i].area();
}
}
return rt;
}
bool cmp_eq( long double x, long double y ) {
return sg(x-y)==;
}
void clean() {
int j=;
for( int i=; i<n; i++ )
if( !del[i] ) cir[j++]=cir[i];
n = j;
}
long double area() {
Point ip[];
int ic;
long double rt = 0.0;
for( int i=; i<n; i++ ) {
for( int j=i+; j<n; j++ ) {
ic = ccinter( i, j, ip );
if( ic<= ) continue;
for( int k=; k<ic; k++ ) {
int q=n;
for( q=; q<n; q++ ) {
if( q==i || q==j ) continue;
if( cir[q].in(ip[k]) )
break;
}
if( q==n ) spt[stot++]=ip[k].x;
}
}
}
for( int i=; i<n; i++ ) {
spt[stot++] = cir[i].c.x-cir[i].r;
spt[stot++] = cir[i].c.x+cir[i].r;
}
sort( spt, spt+stot );
stot = unique( spt, spt+stot, cmp_eq ) - spt; for( int i=; i<stot; i++ )
rt += area( spt[i-], spt[i] );
return rt;
}
void init() {
sort( cir, cir+n, cmp_cir_r );
for( int i=; i<n; i++ )
for( int j=i+; j<n; j++ ) {
long double dx = cir[i].c.x-cir[j].c.x;
long double dy = cir[i].c.y-cir[j].c.y;
long double dij = dx*dx+dy*dy;
long double cc = cir[j].r-cir[i].r;
cc = cc*cc;
if( dij<cc ) del[i]=true;
}
clean();
}
int main() {
scanf( "%d", &n );
for( int i=; i<n; i++ )
scanf( "%Lf%Lf%Lf", &cir[i].c.x, &cir[i].c.y, &cir[i].r );
init();
printf( "%.3Lf\n", area() );
}
bzoj 2178的更多相关文章
- [BZOJ 2178] 圆的面积并 【Simpson积分】
题目链接:BZOJ - 2178 题目分析 用Simpson积分,将圆按照 x 坐标分成连续的一些段,分别用 Simpson 求. 注意:1)Eps要设成 1e-13 2)要去掉被其他圆包含的圆. ...
- BZOJ 2178: 圆的面积并 [辛普森积分 区间并]
2178: 圆的面积并 Time Limit: 20 Sec Memory Limit: 259 MBSubmit: 1740 Solved: 450[Submit][Status][Discus ...
- bzoj 2178 圆的面积并——辛普森积分
题目:https://www.lydsy.com/JudgeOnline/problem.php?id=2178 把包含的圆去掉.横坐标不相交的一段一段圆分开算.算辛普森的时候预处理 f( ) ,比如 ...
- bzoj 2178 圆的面积并 —— 辛普森积分
题目:https://www.lydsy.com/JudgeOnline/problem.php?id=2178 先看到这篇博客:https://www.cnblogs.com/heisenberg- ...
- bzoj 2178 自适应Simpson积分
#include<iostream> #include<algorithm> #include<cstdio> #include<cstring> #i ...
- BZOJ 2178 圆的面积并 ——Simpson积分
[题目分析] 史上最良心样例,史上最难调样例. Simpson积分硬上. 听说用long double 精度1e-10才能过. 但是double+1e-6居然过了. [代码] #include < ...
- bzoj 2178 圆的面积并【simpson积分】
直接套simpson,f可以直接把圆排序后扫一遍所有圆,这样维护一个区间就可以避免空段. 然而一定要去掉被其他圆完全覆盖的圆,否则会TLE #include<iostream> #incl ...
- BZOJ 2178 Simpson积分
思路: 我发现能用Simpson积分水的题 好像都是裸题诶233333 //By SiriusRen #include <bits/stdc++.h> using namespace s ...
- BZOJ 2178: 圆的面积并 (辛普森积分)
code #include <set> #include <cmath> #include <cstdio> #include <cstring> #i ...
随机推荐
- aarch64_n2
nodejs-is-dotfile-1.0.2-2.fc26.noarch.rpm 2017-02-12 00:27 9.5K fedora Mirroring Project nodejs-is-e ...
- 【转】WCF光芒下的Web Service
WCF光芒下的Web Service 学习.NET的开发人员,在WCF的光芒照耀下,Web Service 似乎快要被人遗忘了.因为身边做技术的人一开口就是WCF多么的牛逼!废话不多,本人很久不写博客 ...
- UrlRouteModule
一.请求流程 当一个请求发往ASP.net MVC站点时的情景,IIS收到请求并将请求转到ASP.net,然后根据URL,或者更确切来说:被请求文件的扩展名.在IIS7 integrated模式下(默 ...
- android studio实现Intent通信-------牛刀小试
概述: 本博文实现一种小程序,两个Activity单向通信,主从关系,MainActivty 页面布局一个EditText+Button,实现逻辑是单击按钮将信息发送给另外一个DisplayMessa ...
- virtualenv,virtualenvwrapper安装及使用
1.安装 # 安装: (sudo) pip install virtualenv virtualenvwrapper # centos7下 pip install virtualenv virtual ...
- Java容器---Set: HashSet & TreeSet & LinkedHashSet
1.Set接口概述 Set 不保存重复的元素(如何判断元素相同呢?).如果你试图将相同对象的多个实例添加到Set中,那么它就会阻止这种重复现象. Set中最常被使用的是测试归属性,你可以 ...
- 使用T-SQL导入多个文件数据到SQL Server中
在我们的工作中,经常需要连续输入多个文件的数据到SQL Server的表中,有时需要从相同或者不同的目录中,同时将文件中的数据倒入.在这篇文章中,我们将讨论如何同时把一个目录中的文件的数据倒入到SQL ...
- SQL Server和Access数据读写
1.查询Access中数据的方法: select * from OpenRowSet('microsoft.jet.oledb.4.0',';database=c:/db2.mdb','select ...
- FileBeat读取特征目录及特征文件,为不同的path生成不同的Kafka Topic
进入日志收集及监控报警这个领域,感觉一切都要从新学习. 现在周五,这周有两天用来踩坑了. 作些记录. 第一个遇到的问题,就是不同的应用组件,在k8s里,会生成不同的日志,如何采集到这些不同的日志呢? ...
- ASP.NET:插件化机制
概述 nopCommerce的插件机制的核心是使用BuildManager.AddReferencedAssembly将使用Assembly.Load加载的插件程序集添加到应用程序域的引用中.具体实现 ...