首页 技术 正文
技术 2022年11月16日
0 收藏 424 点赞 3,876 浏览 1901 个字

Nowadays all circuses in Berland have a round arena with diameter 13 meters, but in the past things were different.

In Ancient Berland arenas in circuses were shaped as a regular (equiangular) polygon, the size and the number of angles could vary from one circus to another. In each corner of the arena there was a special pillar, and the rope strung between the pillars marked the arena edges.

Recently the scientists from Berland have discovered the remains of the ancient circus arena. They found only three pillars, the others were destroyed by the time.

You are given the coordinates of these three pillars. Find out what is the smallest area that the arena could have.

Input

The input file consists of three lines, each of them contains a pair of numbers –– coordinates of the pillar. Any coordinate doesn’t exceed 1000 by absolute value, and is given with at most six digits after decimal point.

Output

Output the smallest possible area of the ancient arena. This number should be accurate to at least 6 digits after the decimal point. It’s guaranteed that the number of angles in the optimal polygon is not larger than 100.

Examples

Input

0.000000 0.000000
1.000000 1.000000
0.000000 1.000000

Output

1.00000000

题意:有一个正多边形,现在我们只知道其中3个点的坐标,求原多边形的面积,如果有多个满足,求最小面积。

思路:已知三点,我们可以确定外接圆,然后显然,我们需要多边形的边长最大(或者对于的圆心角最大),但是由于有钝角或者锐角,求最大边长可能要讨论。所以我们求最大圆心角。

可能推论:最大圆心角=三角形的三条边对应的圆心角的gcd。然后就得到了有2pi/gcd边。blabla。

(得到三个角的时候,第三个角=2pi-A-B。而直接求会WA。。。

#include<bits/stdc++.h>
using namespace std;
const double eps=1e-;
const double pi=acos(-1.0);
double Gcd(double a,double b)
{
while(fabs(a)>eps&&fabs(b)>eps){
if(a>b) a-=floor(a/b)*b;
else b-=floor(b/a)*a;
}
return a+b;
}
double x[],y[],L1,L2,L3,S,R;
double dist(int a,int b){
return sqrt((x[a]-x[b])*(x[a]-x[b])+(y[a]-y[b])*(y[a]-y[b]));
}
double area(){
double p=(L1+L2+L3)/2.0; return sqrt(p*(p-L1)*(p-L2)*(p-L3));
}
int main()
{
for(int i=;i<=;i++) scanf("%lf%lf",&x[i],&y[i]);
L1=dist(,); L2=dist(,); L3=dist(,);
S=area(); R=L1*L2*L3/(S*);
double A=acos((R*R+R*R-L3*L3)/(*R*R));
double B=acos((R*R+R*R-L2*L2)/(*R*R));
double C=*pi-A-B;
double ang=Gcd(Gcd(A,B),C);
double ans=pi/ang*R*R*sin(ang);
printf("%.6lf\n",ans);
return ;
}
相关推荐
python开发_常用的python模块及安装方法
adodb:我们领导推荐的数据库连接组件bsddb3:BerkeleyDB的连接组件Cheetah-1.0:我比较喜欢这个版本的cheeta…
日期:2022-11-24 点赞:878 阅读:9,105
Educational Codeforces Round 11 C. Hard Process 二分
C. Hard Process题目连接:http://www.codeforces.com/contest/660/problem/CDes…
日期:2022-11-24 点赞:807 阅读:5,582
下载Ubuntn 17.04 内核源代码
zengkefu@server1:/usr/src$ uname -aLinux server1 4.10.0-19-generic #21…
日期:2022-11-24 点赞:569 阅读:6,429
可用Active Desktop Calendar V7.86 注册码序列号
可用Active Desktop Calendar V7.86 注册码序列号Name: www.greendown.cn Code: &nb…
日期:2022-11-24 点赞:733 阅读:6,200
Android调用系统相机、自定义相机、处理大图片
Android调用系统相机和自定义相机实例本博文主要是介绍了android上使用相机进行拍照并显示的两种方式,并且由于涉及到要把拍到的照片显…
日期:2022-11-24 点赞:512 阅读:7,836
Struts的使用
一、Struts2的获取  Struts的官方网站为:http://struts.apache.org/  下载完Struts2的jar包,…
日期:2022-11-24 点赞:671 阅读:4,919