CodeForces 630P(正弦定理求三角形面积)

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

解体思路:

可以通过求三角形ABO的面积(S)来求阴影部分的面积(X),X=S*2*n;接下来就变成了求小三角面积,通过圆心角于圆周角的关系求得角OBA=PI/(2*n),角AOB=2*角OED=2*角OBA=PI/n;接着又能求出角OBA=PI-AOB-OBA;再由正弦定理得AB边长,最后由面积公式1/2*a*b*sin(c)得面积。

===2R.,cosA=,cosB=,cosC=(补充知识)


代码如下:

#include<stdio.h>
#include<cmath>
#define PI acos(-1.0)  //圆周率 
int main(){
	int n,r;
	double a,b,c;
	double A,B,C,S;
	while(scanf("%d%d",&n,&r)!=EOF){
		a=PI*1.0/(2*n);
		c=PI*1.0/n;
		b=PI-a-c;
		C=sin(c)*(r/sin(b));
		S=0.5*r*C*sin(a);
		S=S*2*n;
		printf("%.12lf\n",S);
	}
	return 0;
}


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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值