题意:已知圆的内接多边形的各个边长,求多边形的面积。

分析:

1、因为是圆的内接多边形,将多边形的每个顶点与圆心相连,多边形的面积就等于被分隔成的各三角形之和。

2、根据海伦公式,任意一个三角形的面积为:double p = (2 * r + a[i]) / 2,S = sqrt(p * (p - r) * (p - r) * (p - a[i])),a[i]为多边形某条边的长度,由此可以表示出多边形的面积。

3、对于任意一个三角形,设其为半径的两条边的夹角为α,则sin(α/2) = (a[i] / 2) / r,所以α = 2 * asin(a[i] / 2 / r)。

4、注意asin()函数的计算结果是弧度值,所以所有三角形的夹角和应与2比较大小。

5、二分确定半径大小,并通过夹角和验证。

(1)二分设置一个上限

(2)judge()函数判断对于每一个三角形是否符合两边之和大于第三边,如果2 * r小于或等于a[i],说明半径过小,所以应当l = mid + eps。

(3)如果judge()函数成立,将所有三角形的夹角和与2比较,若小于,说明半径过长,因此r = mid - eps;若大于,说明半径过短,因此l = mid + eps;若相等,则符合要求。

6、注意浮点数比较大小。

7、若n<=2,则不构成多边形,输出0.000。

8、若最长边大于或等于其他所有边之和,则构不成多边形,输出0.000,即ma 大于或等于 sum - ma。

9、因为计算过程中会损失精度,结果最好加上eps。

10、本题虽然结果保留小数点后三位,但是为保证精度,eps设置为1e-15,而半径的查找上限设置为1e15。

#pragma comment(linker, "/STACK:102400000, 102400000")
#include<cstdio>
#include<cstring>
#include<cstdlib>
#include<cctype>
#include<cmath>
#include<iostream>
#include<sstream>
#include<iterator>
#include<algorithm>
#include<string>
#include<vector>
#include<set>
#include<map>
#include<stack>
#include<deque>
#include<queue>
#include<list>
#define Min(a, b) ((a < b) ? a : b)
#define Max(a, b) ((a < b) ? b : a)
typedef long long ll;
typedef unsigned long long llu;
const int INT_INF = 0x3f3f3f3f;
const int INT_M_INF = 0x7f7f7f7f;
const ll LL_INF = 0x3f3f3f3f3f3f3f3f;
const ll LL_M_INF = 0x7f7f7f7f7f7f7f7f;
const int dr[] = {, , -, , -, -, , };
const int dc[] = {-, , , , -, , -, };
const int MOD = 1e9 + ;
const double pi = acos(-1.0);
const double eps = 1e-;
const int MAXN = + ;
const int MAXT = + ;
using namespace std;
double a[MAXN];
int n;
int dcmp(double a, double b){
if(fabs(a - b) < eps) return ;
return a < b ? - : ;
}
bool judge(double r){
for(int i = ; i < n; ++i){
if(dcmp( * r, a[i]) != ) return false;
}
return true;
}
int Equal(double r){
double ans = ;
for(int i = ; i < n; ++i){
ans += * asin(a[i] / / r);
}
return dcmp(ans, * pi);
}
double get_R(double l, double r){
int tmp = ;
while(tmp--){
double mid = l + (r - l) / ;
if(!judge(mid)) l = mid + eps;
else{
int w = Equal(mid);
if(w == ) l = mid + eps;
else if(w == -) r = mid - eps;
else return mid;
}
}
return l;
}
double solve(){
double r = get_R(, 1e15);
double sum = 0.0;
for(int i = ; i < n; ++i){
double p = ( * r + a[i]) / ;
sum += sqrt(p * (p - r) * (p - r) * (p - a[i]));
}
return sum;
}
int main(){
int T;
scanf("%d", &T);
while(T--){
scanf("%d", &n);
double ma = ;
double sum = ;
for(int i = ; i < n; ++i){
scanf("%lf", &a[i]);
sum += a[i];
if(dcmp(a[i], ma) == ) ma = a[i];
}
if(n <= || dcmp( * ma, sum) != -){
printf("0.000\n");
continue;
}
printf("%.3lf\n", solve() + eps);
}
return ;
}

UVA - 11277 Cyclic Polygons(二分)的更多相关文章

  1. uva 1335 - Beijing Guards(二分)

    题目链接:uva 1335 - Beijing Guards 题目大意:有n个人为成一个圈,其中第i个人想要r[i]种不同的礼物,相邻的两个人可以聊天,炫耀自己的礼物.如果两个相邻的人拥有同一种礼物, ...

  2. UVA - 11478 - Halum(二分+差分约束系统)

    Problem  UVA - 11478 - Halum Time Limit: 3000 mSec Problem Description You are given a directed grap ...

  3. UVa 714 Copying Books - 二分答案

    求使最大值最小,可以想到二分答案. 然后再根据题目意思乱搞一下,按要求输出斜杠(这道题觉得就这一个地方难). Code /** * UVa * Problem#12627 * Accepted * T ...

  4. hdu 1853 Cyclic Tour (二分匹配KM最小权值 或 最小费用最大流)

    Cyclic Tour Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/65535 K (Java/Others)Total ...

  5. UVA 10341 Solve It 二分

    题目大意:给6个系数,问是否存在X使得等式成立 思路:二分.... #include <stdio.h> #include <math.h> #define EEE 2.718 ...

  6. UVa 11107 (后缀数组 二分) Life Forms

    利用height值对后缀进行分组的方法很常用,好吧,那就先记下了. 题意: 给出n个字符串,求一个长度最大的字符串使得它在超过一半的字符串中出现. 多解的话,按字典序输出全部解. 分析: 在所有输入的 ...

  7. UVA 714 Copying Books 二分

    题目链接: 题目 Copying Books Time limit: 3.000 seconds 问题描述 Before the invention of book-printing, it was ...

  8. UVa 1644 (筛素数 + 二分) Prime Gap

    题意: 给出一个整数n,如果n是素数输出0,否则输出它后一个素数与前一个素数的差值. 分析: 首先用筛法把前十万个素数都筛出来,然后放到数组里.用二分找到不大于n的最大的素数的下标,如果这个素数等于n ...

  9. UVa LA 4254 - Processor 二分,贪心 难度: 1

    题目 https://icpcarchive.ecs.baylor.edu/index.php?option=com_onlinejudge&Itemid=8&page=show_pr ...

随机推荐

  1. mycat 主从复制,读写分离,

    1.mycat 主从复制 https://blog.csdn.net/qq_35992900/article/details/80599976 2.mycat 读写分离 https://blog.cs ...

  2. 条款01:视C++为一个语言联邦

    C++由四部分组成: 1)C. 2)Object-Oriented C++.classes,封装,多态,动态绑定(virtual函数) 3)Template C++.泛型编程. 4)STL. 对于内置 ...

  3. SPring整合Mybatis方式一

    Spring整合Mybatis 需要maven包: mysql-connector-java 5.1.47, mybatis 3.5.2, spring-webmvc 5.2.2.RELEASE, s ...

  4. [Educational Codeforces Round 81 (Rated for Div. 2)]E. Permutation Separation(线段树,思维,前缀和)

    [Educational Codeforces Round 81 (Rated for Div. 2)]E. Permutation Separation(线段树,思维,前缀和) E. Permuta ...

  5. Derivative Pricing_2_Vasicek

    *Catalog 1. Plotting Vasicek Trajectories 2. CKLS Method for Parameter Estimation (elaborated by GMM ...

  6. IDEA代码检验出错

    该软件功能过于强大,会自动检验执行所需要的代码,所以会报错,但实际上我们有写 例如 解决方法 File-->setting 将error改为warning

  7. Lesson 2 Spare that spider

    How much of each year do spiders killing insects? Why, you may wonder, should spiders be our friends ...

  8. MongoDB分片技术原理和高可用集群配置方案

    一.Sharding分片技术 1.分片概述 当数据量比较大的时候,我们需要把数分片运行在不同的机器中,以降低CPU.内存和Io的压力,Sharding就是数据库分片技术. MongoDB分片技术类似M ...

  9. 个人项目发表到GitHub

    个人项目源程序代码发送到github上. 因为之前假期已经注册过了账户,所以只是上传了做过的小账本项目. https://www.cnblogs.com/sdcs/p/8270029.html

  10. Ubuntu系统部署tomcat并启用JMX实战案例

    Ubuntu系统部署tomcat并启用JMX实战案例 作者:尹正杰 版权声明:原创作品,谢绝转载!否则将追究法律责任. 一.安装JDK环境 1>.更换阿里云的软件源 [root@zabbix_g ...