codeforce 1C

C. Ancient Berland Circus
time limit per test
2 seconds
memory limit per test
64 megabytes
input
standard input
output
standard output

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
#include<stdio.h>
#include<iostream>
#include<string>
#include<algorithm>
#include<string.h>
#include<map> 
#include<math.h>
using namespace std;
const double eps = 1e-2;
const double PI = acos(-1.0); 
double f(double x1,double y1,double x2,double y2)
{
	return sqrt(pow(x1-x2,2)+pow(y1-y2,2));
}
double f1(double r,double b)
{
	return (2*r*r-b*b)/(2*r*r);
}
double fgcd(double a, double b)//  浮点型gcd 
{  
    if(fabs(a) < eps) return b;  
    if(fabs(b) < eps) return a;  
    return fgcd(b, fmod(a,b));  
}  
int main()
{
	double x1,y1,x2,y2,x3,y3,b1,b2,b3,S,p,R,ang1,ang2,ang3,ang;
	double bian;
	while(~scanf("%lf%lf",&x1,&y1))
	{
		scanf("%lf%lf",&x2,&y2);
		scanf("%lf%lf",&x3,&y3);
		b1=f(x1,y1,x2,y2);
		b2=f(x1,y1,x3,y3);
		b3=f(x2,y2,x3,y3);
		p=(b1+b2+b3)/2;
		S=sqrt(p*(p-b1)*(p-b2)*(p-b3));
		R=b1*b2*b3/(4*S);
		ang1=acos(f1(R,b1))*180/PI;
		ang2=acos(f1(R,b2))*180/PI;
		ang3=acos(f1(R,b3))*180/PI;
		ang3=360-ang1-ang2;//要用360减,不然WA
		ang=fgcd(ang1,fgcd(ang2,ang3));
		bian=360/ang;//求边数
		printf("%.8lf\n",sin(ang*PI/180)*R*R*bian/2);
	}
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值