CodeForces 630P: Area of a Star【数学】

 Area of a Star
Time Limit:500MS     Memory Limit:65536KB     64bit IO Format:%I64d & %I64u

Description

It was decided in IT City to distinguish successes of local IT companies by awards in the form of stars covered with gold from one side. To order the stars it is necessary to estimate order cost that depends on the area of gold-plating. Write a program that can calculate the area of a star.

A "star" figure having n ≥ 5 corners where n is a prime number is constructed the following way. On the circle of radius rn points are selected so that the distances between the adjacent ones are equal. Then every point is connected by a segment with two maximally distant points. All areas bounded by the segments parts are the figure parts.

Input

The only line of the input contains two integers n (5 ≤ n < 109n is prime) and r (1 ≤ r ≤ 109) — the number of the star corners and the radius of the circumcircle correspondingly.

Output

Output one number — the star area. The relative error of your answer should not be greater than 10 - 7.

Sample Input

Input
7 10
Output
108.395919545675
思路(简单): 每个角顶点到圆心可以分为两个全等三角形,先利用圆周角和圆心角的关系求出三角形的三个角,再利用正弦定理,可以求出三角形的边长,再利用s=(1/2)*a*b*sin(c),求出每个三角形的面积,再将s*2*n(2*n为全等三角形的个数)即为所求。
AC-code:
#include<cstdio>
#include<cmath>
#define PI acos(-1.0)
int main()
{
	double n,r,x,y,z,len,s;
	scanf("%lf%lf",&n,&r);
	x=PI/(2*n);
	y=PI/n;
	z=PI-x-y;
	len=r*sin(x)/sin(z);
	s=len*r*sin(y)*n;
	printf("%.8lf\n",s);
	return 0;
}

我自己第一次想到的(复杂):边接所有顶点,及其到圆心,得到n个三角形,三角形内还有小三角,求出三角形的面积减去小三角的面积乘以n即可,但是就是不对。。。。 委屈 委屈 委屈
代码:
#include<cstdio>
#include<cmath>
#define PI acos(-1.0)
int main()
{
	double r,n,y,x,l,d,s,ans;
	scanf("%lf%lf",&n,&r);
	y=PI/n;
	x=PI/2+PI/(2*n);
	l=2*r*sin(y);
	d=l/(2*tan(x/2));
	s=l*r*cos(y)/2-d*l/2;
	ans=n*s;
	printf("%.8lf\n",ans);
	return 0;
}


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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值