【BZOJ】2178: 圆的面积并
http://www.lydsy.com/JudgeOnline/problem.php?id=2178
题意:给出n<=1000个圆,求这些圆的面积并
#include <cstdio>
#include <cstring>
#include <cmath>
#include <string>
#include <iostream>
#include <algorithm>
#include <queue>
#include <set>
#include <map>
#include <sstream>
using namespace std;
typedef long long ll;
#define pb push_back
#define rep(i, n) for(int i=0; i<(n); ++i)
#define for1(i,a,n) for(int i=(a);i<=(n);++i)
#define for2(i,a,n) for(int i=(a);i<(n);++i)
#define for3(i,a,n) for(int i=(a);i>=(n);--i)
#define for4(i,a,n) for(int i=(a);i>(n);--i)
#define CC(i,a) memset(i,a,sizeof(i))
#define read(a) a=getint()
#define print(a) printf("%d", a)
#define dbg(x) cout << (#x) << " = " << (x) << endl
#define error(x) (!(x)?puts("error"):0)
#define rdm(x, i) for(int i=ihead[x]; i; i=e[i].next)
inline int getint() { static int r, k; r=0,k=1; static char c; c=getchar(); for(; c<'0'||c>'9'; c=getchar()) if(c=='-') k=-1; for(; c>='0'&&c<='9'; c=getchar()) r=r*10+c-'0'; return k*r; } const double eps=1e-6, PI=acos(-1);
int dcmp(double x) { return abs(x)<eps?0:(x<0?-1:1); }
double sqr(double x) { return x*x; }
struct iP { double x, y; iP(double _x=0, double _y=0) : x(_x), y(_y) {} };
double dis(iP &a, iP &b) { return sqrt(sqr(a.x-b.x)+sqr(a.y-b.y)); }
struct iC {
iP p; double r;
iP getP(double d) { return iP(p.x+cos(d)*r, p.y+sin(d)*r); }
double areaH(double d) { return (d-sin(d))/2*sqr(r); }
};
double angle(iP &a, iP &b) {
static double x, y;
x=b.x-a.x; y=b.y-a.y;
return atan2(y, x);
}
void CCi(iC &a, iC &b, double &ang1, double &ang2) {
static double ang, d, R, r, da;
d=dis(a.p, b.p); //dbg(d);
ang=angle(a.p, b.p);
R=a.r; r=b.r; //dbg((sqr(R)+sqr(d)-sqr(r))/2/R/d);
da=acos((sqr(R)+sqr(d)-sqr(r))/2/R/d);
ang1=ang-da;
ang2=ang+da;
} const int N=1105;
iC a[N];
int n, cnt;
bool nok[N];
struct dat { double pos; int k; }b[N*5];
bool cmp(const dat &a, const dat &b) { return a.pos<b.pos; } int main() {
read(n);
for1(i, 1, n) scanf("%lf%lf%lf", &a[i].p.x, &a[i].p.y, &a[i].r);
for1(i, 1, n) for1(j, 1, n) if(!nok[j] && i!=j) {
double d=dis(a[i].p, a[j].p);
if(dcmp(a[j].r-a[i].r-d)>=0) { nok[i]=1; break; }
}
double ang1, ang2, PI2=PI*2, ans=0;
int sum=0;
iP A, B;
for1(i, 1, n) if(!nok[i]) {
cnt=0;
for1(j, 1, n) if(i!=j && !nok[j]) {
if(dcmp(dis(a[i].p, a[j].p)-a[i].r-a[j].r)>=0) continue;
CCi(a[i], a[j], ang1, ang2);
if(dcmp(ang1)<0) ang1+=PI2;
if(dcmp(ang2)<0) ang2+=PI2;
if(dcmp(ang1-ang2)>0) {
++cnt; b[cnt].pos=0; b[cnt].k=1;
++cnt; b[cnt].pos=ang2; b[cnt].k=-1;
++cnt; b[cnt].pos=ang1; b[cnt].k=1;
++cnt; b[cnt].pos=PI2; b[cnt].k=-1;
}
else {
++cnt; b[cnt].pos=ang1; b[cnt].k=1;
++cnt; b[cnt].pos=ang2; b[cnt].k=-1;
}
}
++cnt; b[cnt].pos=0; b[cnt].k=0;
++cnt; b[cnt].pos=PI2; b[cnt].k=0;
sort(b+1, b+1+cnt, cmp);
sum=0;
for1(j, 1, cnt-1) {
sum+=b[j].k;
if(!sum) {
ans+=a[i].areaH(b[j+1].pos-b[j].pos);
A=a[i].getP(b[j].pos);
B=a[i].getP(b[j+1].pos);
ans+=(A.x*B.y-A.y*B.x)/2;
}
}
}
printf("%.3f\n", ans);
return 0;
}
这题坑了我3h啊啊啊啊啊.....................................................我就一sb...
这题有多种解法,什么是辛普森积分我不知道QAQ因此这种做法是一个坑....以后再填..
首先得知道如何求这些圆的并:
圆的面积并=每个圆没有被覆盖的弧(弦那里算起)的面积和+所有相交圆被覆盖弧所组成的多边形(由弦做边)
正确性自己画图.....
因此题目变为先求没有被覆盖的弧(直接离散圆周长为线,具体操作请看上上一题...),然后算出每个圆未被覆盖(就是覆盖弧的弦以外的)的面积,然后再用叉积求出多边形面积(原理就是多边形的面积可以通过加加减减得到...)
然后就完了
好题!
【BZOJ】2178: 圆的面积并的更多相关文章
- BZOJ 2178: 圆的面积并 [辛普森积分 区间并]
2178: 圆的面积并 Time Limit: 20 Sec Memory Limit: 259 MBSubmit: 1740 Solved: 450[Submit][Status][Discus ...
- [BZOJ 2178] 圆的面积并 【Simpson积分】
题目链接:BZOJ - 2178 题目分析 用Simpson积分,将圆按照 x 坐标分成连续的一些段,分别用 Simpson 求. 注意:1)Eps要设成 1e-13 2)要去掉被其他圆包含的圆. ...
- bzoj 2178 圆的面积并 —— 辛普森积分
题目:https://www.lydsy.com/JudgeOnline/problem.php?id=2178 先看到这篇博客:https://www.cnblogs.com/heisenberg- ...
- bzoj 2178 圆的面积并——辛普森积分
题目:https://www.lydsy.com/JudgeOnline/problem.php?id=2178 把包含的圆去掉.横坐标不相交的一段一段圆分开算.算辛普森的时候预处理 f( ) ,比如 ...
- bzoj 2178 圆的面积并【simpson积分】
直接套simpson,f可以直接把圆排序后扫一遍所有圆,这样维护一个区间就可以避免空段. 然而一定要去掉被其他圆完全覆盖的圆,否则会TLE #include<iostream> #incl ...
- BZOJ 2178 圆的面积并 ——Simpson积分
[题目分析] 史上最良心样例,史上最难调样例. Simpson积分硬上. 听说用long double 精度1e-10才能过. 但是double+1e-6居然过了. [代码] #include < ...
- BZOJ 2178: 圆的面积并 (辛普森积分)
code #include <set> #include <cmath> #include <cstdio> #include <cstring> #i ...
- 【BZOJ】【2178】圆的面积并
自适应辛普森积分 Orz Hzwer 辛普森真是个强大的东西……很多东西都能积= = 这题的正解看上去很鬼畜,至少我这种不会计算几何的渣渣是写不出来……(对圆的交点求图包,ans=凸包的面积+一堆弓形 ...
- [SPOJ-CIRU]The area of the union of circles/[BZOJ2178]圆的面积并
[SPOJ-CIRU]The area of the union of circles/[BZOJ2178]圆的面积并 题目大意: 求\(n(n\le1000)\)个圆的面积并. 思路: 对于一个\( ...
随机推荐
- 异常详细信息: System.Data.SqlClient.SqlException:用户 'IIS APPPOOL\DefaultAppPool' 登录失败解决办法
1.安全性---登录名---新建登录名 2.常规----搜索 3.添加SERVICE用户-- 4.服务器角色---勾上sysadmin: IIS中: 应用程序池---对应的程序池上右键---高级设置 ...
- HDOJ 2546饭卡(01背包问题)
http://acm.hdu.edu.cn/showproblem.php?pid=2546 Problem Description 电子科大本部食堂的饭卡有一种很诡异的设计,即在购买之前判断余额.如 ...
- django-cms 代码研究(七)杂七杂八
实体关系图 核心对象: cms_page/cms_placeholder/cms_cmsplugin. page模型类继承关系图 CMSPlugin&Placeholder模型类继承关系图 = ...
- Top K Frequent Elements
Given a non-empty array of integers, return the k most frequent elements. For example,Given [1,1,1,2 ...
- 要“jquery”ScriptResourceMapping。请添加一个名为 jquery (区分大小写)的 ScriptResourceMapping。”的解决办法。
1.在网站根目录下新建一scripts文件夹,向里边添加jquery-1.7.2.min.js和jquery-1.7.2.js(可根据自己需要使用不同的版本), 2.在根目录下添加全局应用程 ...
- poj2778
题意:给出字符串长度n(<=2000000000),给出不可以包含的序列,最多10个,每个长度最大是10.问长度为n的合法序列有多少个?序列中只可能包含ACTG四个字符. 分析:AC自动机(DF ...
- C# 支持多种语言
通过Resource文件建立本地化. net 资源文件名(这里是Resource1.resx)由根名称(即Resource1),本地语言名称(默认情况下还没有)及扩展名组成,在读取资源时,资源管理器会 ...
- Txx考试(codevs 2894)
2894 Txx考试 时间限制: 1 s 空间限制: 32000 KB 题目等级 : 黄金 Gold 题解 查看运行结果 题目描述 Description Txx是一个成绩很差的人,考 ...
- ASP.NET SignalR 与LayIM配合,轻松实现网站客服聊天室(二) 实现聊天室连接
上一篇已经简单介绍了layim WebUI即时通讯组件和获取数据的后台方法.现在要讨论的是SingalR的内容,之前都是直接贴代码.那么在贴代码之前先分析一下业务模型,顺便简单讲一下SingalR里的 ...
- ipconfig 无效
刚刚配置了很多的环境变量后,在命令行下输入ipconfig后无效了 于是在环境变量PATH底下再次加入了;C:\WINDOWS\system32; 从新运行ipconfig,问题解决