首页 > 其他 > 详细

NN and the Optical Illusion-光学幻觉 CodeForce1100C 几何

时间:2019-02-17 22:40:55      阅读:284      评论:0      收藏:0      [点我收藏+]

题目链接:NN and the Optical Illusion

题目原文

NN is an experienced internet user and that means he spends a lot of time on the social media. Once he found the following image on the Net, which asked him to compare the sizes of inner circles:

技术分享图片

It turned out that the circles are equal. NN was very surprised by this fact, so he decided to create a similar picture himself.

He managed to calculate the number of outer circles ??n and the radius of the inner circle ??r. NN thinks that, using this information, you can exactly determine the radius of the outer circles ??R so that the inner circle touches all of the outer ones externally and each pair of neighboring outer circles also touches each other. While NN tried very hard to guess the required radius, he didn‘t manage to do that.

Help NN find the required radius for building the required picture. 

题目大意

上面的图,其实中间的两个圆的面积是相等的。要做的是已知中间的圆的半径r,如果外面有n个圆围着中间的圆,求外围圆的半径。

思路

技术分享图片

注意一下输出的时候的小数位数即可。

题解

 1 #include <iostream>
 2 #include <cmath>
 3 #include <cstdio>
 4 
 5 using namespace std;
 6 
 7 
 8 const double PI=acos((double)-1);
 9 int num, r;
10 
11 int main(int argc, char const *argv[])
12 {
13 
14     cin >> num >> r;
15     double sin_ = sin(PI/num);
16     double ans = r*(sin_ / (1-sin_));
17     printf("%.7f", ans);
18     return 0;
19 }

 

NN and the Optical Illusion-光学幻觉 CodeForce1100C 几何

原文:https://www.cnblogs.com/SaltyFishQF/p/10393056.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!