程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> codeforces Round #1 C題 Ancient Berland Circus (計算幾何)

codeforces Round #1 C題 Ancient Berland Circus (計算幾何)

編輯:C++入門知識

codeforces Round #1 C題 Ancient Berland Circus (計算幾何)


這題的思路很好想,分成以下4步:

1:求外切園半徑

2:求三個圓心角

3:求三個圓心角的最大公約數

4:最大公約數就是最大的正多邊形內角,求面積即可。

但是每一步都不會求啊。。。。sad。。。當想到第3步的時候甚至覺得應該用別的方法來求。。要換方法。。幾何太渣了。

代碼如下:

#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
using namespace std;
#define LL __int64
#define pi acos(-1.0)
const int mod=100000000;
const int INF=0x3f3f3f3f;
const double eqs=0.01;
struct Point
{
    double x, y;
}p[4];
bool dmp(double x, double y)
{
    return fabs(x-y)

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved