CodeForces - 1C Ancient Berland Circus【基础计算几何】

【题目描述】
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.

【输入】
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 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.

【样例输入】
0.000000 0.000000
1.000000 1.000000
0.000000 1.000000

【样例输出】
1.00000000

题目链接:http://codeforces.com/problemset/problem/1/C

代码如下:

#include <bits/stdc++.h>
using namespace std;
static const double EPS=1e-4;
static const double PI=acos(-1.0);
struct Point{
    double x,y;
}point[4];
double dis[4];
double gcd(double x,double y)
{
    while(fabs(x)>EPS && fabs(y)>EPS)
    {
        if(x>y) x-=floor(x/y)*y;
        else y-=floor(y/x)*x;
    }
    return x+y;
}
int main()
{
    for(int i=1;i<=3;i++)
        cin>>point[i].x>>point[i].y;
    dis[1]=sqrt((point[1].x-point[2].x)*(point[1].x-point[2].x)+(point[1].y-point[2].y)*(point[1].y-point[2].y));
    dis[2]=sqrt((point[1].x-point[3].x)*(point[1].x-point[3].x)+(point[1].y-point[3].y)*(point[1].y-point[3].y));
    dis[3]=sqrt((point[2].x-point[3].x)*(point[2].x-point[3].x)+(point[2].y-point[3].y)*(point[2].y-point[3].y));
    Point v1={point[2].x-point[1].x,point[2].y-point[1].y},v2={point[3].x-point[1].x,point[3].y-point[1].y};
    double s=(v1.x*v2.y-v1.y*v2.x)/2;
    double r=dis[1]*dis[2]*dis[3]/4/s;
    double a=acos((dis[2]*dis[2]+dis[3]*dis[3]-dis[1]*dis[1])/(2*dis[2]*dis[3]));
    double b=acos((dis[1]*dis[1]+dis[3]*dis[3]-dis[2]*dis[2])/(2*dis[1]*dis[3]));
    double c=acos((dis[1]*dis[1]+dis[2]*dis[2]-dis[3]*dis[3])/(2*dis[1]*dis[2]));
    double n=PI/gcd(gcd(a,b),c);
    cout<<fixed<<setprecision(8)<<n/2*r*r*sin(2*PI/n)<<endl;
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值