Codeforces 1C. Ancient Berland Circus(计算几何:正多边形性质+高精度)

本文主要是介绍Codeforces 1C. Ancient Berland Circus(计算几何:正多边形性质+高精度),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

给出三个点的坐标,输出含这三个点的最小正多边形面积

感觉这个题太牛逼了。。。

做的我元气大伤,昨晚看的题,一直没有思路

就去找了道类似的计算几何题Uva12300来做,做得还是挺顺手的

后来意识到了正多边形的一个性质:正n边形中一条边对应的圆心角为2×PI/n

以这里为突破口,先找出n的值,进而再求解

但有一个问题就是给定的点不一定相邻

也就是说两个点与圆心所对应的夹角有可能是多条边所对应的角

这里就是难点所在了

很容易相出求出3个点与圆心组成的3个角

然后对这3个点求最大公约数即为一条边所对应的圆心角

坑就在于角度是个浮点数,一点点误差久会导致最后求得的最大公约数错的离谱

我的做法是现设这三个角度为ang0 ang1 ang2

然后以每个角为一条边求出对应正多边形边数n[i]

再求出三个n值的最小公倍数!

这里的最小公倍数不能直接用乘除做

因为题目中说了最多不会超过正1000边形

所以我的做法是从3开始遍历直到1000

暴力判断这个值是否为3个数的倍数,若是即为最小公倍数

描述起来比较混乱。。。。

直接上代码吧。。。纯手打,真是醉了。。。

我的eps取的是1e-2,取1e-1跪在了第15个样例

代码如下:

/* ***********************************************
Author        : yinwoods
E-Mail        : yinwoods@163.com
Created Time  : 2014年12月13日 星期六 17时00分47秒
File Name     : 1C.cpp
************************************************ */#include <cmath>
#include <cstdio>
#include <string>
#include <cstring>
#include <iostream>
#include <algorithm>
#define MAXN 10010
#define eps 1e-2
#define LL long long
using namespace std;struct Point {double x, y;Point () {}Point (double _x, double _y) {x = _x;y = _y;}
};struct Line {double a, b, c;
};Line getLine(Point p1, Point p2) {Line line;Point mid((p1.x+p2.x)/2.0, (p1.y+p2.y)/2.0);if(p1.y == p2.y) {line.b = 0;line.a = 1.0;line.c = -mid.x;} else {line.b = 1.0;line.a = (p1.x-p2.x)/(p1.y-p2.y);line.c = -line.a*mid.x-line.b*mid.y;}return line;
}Point get_base(Line l1, Line l2) {Point ans;if(l1.b==0 || l2.b==0) {if(l1.b == 0) {ans.x = -l1.c/l1.a;ans.y = (-l2.c-l2.a*ans.x)/l2.b;return ans;}if(l2.b == 0) {ans.x = -l2.c/l2.a;ans.y = (-l1.c-l1.a*ans.x)/l1.b;return ans;}} else {ans.x = (l1.b*l2.c-l2.b*l1.c)/(l1.a*l2.b-l2.a*l1.b);ans.y = (-l1.c-l1.a*ans.x)/l1.b;return ans;}
}double dist(Point p1, Point p2) {return sqrt((p1.x-p2.x)*(p1.x-p2.x) + (p1.y-p2.y)*(p1.y-p2.y));
}LL gcd(LL a, LL b) {return b ? gcd(b, a%b) : a;
}int main() {int num;double n[5];double ang[5];double lens[5];Point p1, p2, p3;scanf("%lf%lf", &p1.x, &p1.y);scanf("%lf%lf", &p2.x, &p2.y);scanf("%lf%lf", &p3.x, &p3.y);Line l1 = getLine(p1, p2);//求出中垂线方程Line l2 = getLine(p2, p3);Point bpoint = get_base(l1, l2);//找到圆心//printf("%.2lf\t%.2lf\n", bpoint.x, bpoint.y);//ang = 2*PI/n;double radius = dist(bpoint, p1);//对应外接圆半径lens[0] = dist(p1, p2)/2.0;lens[1] = dist(p2, p3)/2.0;lens[2] = dist(p3, p1)/2.0;for(int i=0; i<3; ++i) {ang[i] = asin(lens[i]/radius);//求出该边所对的圆心角n[i] = (2*acos(-1.0)/(ang[i]*2.0));//若以ang[i]为一条边对应圆心角,得正n[i]边形}bool ok[4];for(num=3; num<=1000; ++num) {//暴力找出最小公倍数ok[0] = ok[1] = ok[2] = false;for(int i=0; i<3; ++i) {double tmp1 = num/n[i];int tmp2 = tmp1+0.5;if(fabs(tmp1-tmp2) < eps) {ok[i] = true;}//printf("%lf\n", fabs(tmp1-tmp2));}if(ok[0] && ok[1] && ok[2])break;}int nn[4];for(int i=0; i<3; ++i)nn[i] = (int)(n[i]+0.5);//printf("num = %d\n", num);double angs = ang[0]/((int)(num/n[0]+0.5));double a = radius*sin(angs)*2.0;double r = radius*cos(angs);double res = num*a*r/2.0;//正多边形面积公式S = n个小三角形面积之和
/*printf("angle : %.2lf\t%.2lf\t%.2lf\n", ang[0], ang[1], ang[2]);//printf("对应边数:%d\t%d\t%d\n", n[0], n[1], n[2]);printf("对应边数:%.2lf\t%.2lf\t%.2lf\n", n[0], n[1], n[2]);printf("lens0 = %.2lf\tlens1 = %.2lf lens2 = %.2lf\n", lens[0], lens[1], lens[2]);printf("%d边形\n", num);
*/printf("%lf\n", res);return 0;
}


这篇关于Codeforces 1C. Ancient Berland Circus(计算几何:正多边形性质+高精度)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1059167

相关文章

uva 10387 Billiard(简单几何)

题意是一个球从矩形的中点出发,告诉你小球与矩形两条边的碰撞次数与小球回到原点的时间,求小球出发时的角度和小球的速度。 简单的几何问题,小球每与竖边碰撞一次,向右扩展一个相同的矩形;每与横边碰撞一次,向上扩展一个相同的矩形。 可以发现,扩展矩形的路径和在当前矩形中的每一段路径相同,当小球回到出发点时,一条直线的路径刚好经过最后一个扩展矩形的中心点。 最后扩展的路径和横边竖边恰好组成一个直

poj 1113 凸包+简单几何计算

题意: 给N个平面上的点,现在要在离点外L米处建城墙,使得城墙把所有点都包含进去且城墙的长度最短。 解析: 韬哥出的某次训练赛上A出的第一道计算几何,算是大水题吧。 用convexhull算法把凸包求出来,然后加加减减就A了。 计算见下图: 好久没玩画图了啊好开心。 代码: #include <iostream>#include <cstdio>#inclu

uva 1342 欧拉定理(计算几何模板)

题意: 给几个点,把这几个点用直线连起来,求这些直线把平面分成了几个。 解析: 欧拉定理: 顶点数 + 面数 - 边数= 2。 代码: #include <iostream>#include <cstdio>#include <cstdlib>#include <algorithm>#include <cstring>#include <cmath>#inc

uva 11178 计算集合模板题

题意: 求三角形行三个角三等分点射线交出的内三角形坐标。 代码: #include <iostream>#include <cstdio>#include <cstdlib>#include <algorithm>#include <cstring>#include <cmath>#include <stack>#include <vector>#include <

XTU 1237 计算几何

题面: Magic Triangle Problem Description: Huangriq is a respectful acmer in ACM team of XTU because he brought the best place in regional contest in history of XTU. Huangriq works in a big compa

Codeforces Round #240 (Div. 2) E分治算法探究1

Codeforces Round #240 (Div. 2) E  http://codeforces.com/contest/415/problem/E 2^n个数,每次操作将其分成2^q份,对于每一份内部的数进行翻转(逆序),每次操作完后输出操作后新序列的逆序对数。 图一:  划分子问题。 图二: 分而治之,=>  合并 。 图三: 回溯:

poj 3304 几何

题目大意:给出n条线段两个端点的坐标,问所有线段投影到一条直线上,如果这些所有投影至少相交于一点就输出Yes!,否则输出No!。 解题思路:如果存在这样的直线,过投影相交点(或投影相交区域中的点)作直线的垂线,该垂线(也是直线)必定与每条线段相交,问题转化为问是否存在一条直线和所有线段相交。 若存在一条直线与所有线段相交,此时该直线必定经过这些线段的某两个端点,所以枚举任意两个端点即可。

POJ 2318 几何 POJ 2398

给出0 , 1 , 2 ... n 个盒子, 和m个点, 统计每个盒子里面的点的个数。 const double eps = 1e-10 ;double add(double x , double y){if(fabs(x+y) < eps*(fabs(x) + fabs(y))) return 0 ;return x + y ;}struct Point{double x , y

poj 2653 几何

按顺序给一系列的线段,问最终哪些线段处在顶端(俯视图是完整的)。 const double eps = 1e-10 ;double add(double x , double y){if(fabs(x+y) < eps*(fabs(x) + fabs(y))) return 0 ;return x + y ;}struct Point{double x , y ;Point(){}Po

Codeforces Round #261 (Div. 2)小记

A  XX注意最后输出满足条件,我也不知道为什么写的这么长。 #define X first#define Y secondvector<pair<int , int> > a ;int can(pair<int , int> c){return -1000 <= c.X && c.X <= 1000&& -1000 <= c.Y && c.Y <= 1000 ;}int m