lightoj-1072

1072 - Calm Down
PDF (English) Statistics Forum
Time Limit: 2 second(s) Memory Limit: 32 MB
George B. wants to be more than just a good American. He wants to make his daddy proud and become a hero. You know, like Shakib Khan.

But sneaky as he is, he wants a special revolver that will allow him to shoot more often than just the usual six times. This way he can fool and kill the enemy easily (at least that's what he thinks, and that's the best he can think). George has kidnapped . . . uh, I mean . . . "invited" you and will only let you go if you help him with the math. The piece of the revolver that contains the bullets looks like this (examples for 6 and 17 bullets):

There is a large circle with radius R and n little circles each having radius r, are placed inside on the border of the large circle. George wants his bullets to be as large as possible, so there should be no space between the circles. George will decide how large the whole revolver will be and how many bullets it shall contain. Your job is, given R and n, to compute r. You have decided to help, because you know that an idiot can't make a revolver even if you help him with the math.

Input
Input starts with an integer T (≤ 125), denoting the number of test cases.

Each case contains a real number R (0 < R < 1000 and contains up to at most two places after the decimal point) and an integer n (2 ≤ n ≤ 100).

Output
For each test case, print the case number and r in a single line. Errors less than 10-6 will be ignored.

思路:

如图可知道:r/(R-r) = sin(360°/n/2); 然后就可以求出r的值

#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<cmath>
using namespace std;
const double pi = 3.1415926535898;
int main(){
    
    int T,n;
    double R,r,ang;
    scanf("%d",&T);
    for(int t=1;t<=T;t++){
        
        scanf("%lf%d",&R,&n);
        ang = sin(pi/n); //cout<<ang<<endl;
        r = ang*R/(1+ang);
        printf("Case %d: %lf
",t,r);
    }
    
    
    return 0;
} 
View Code
原文地址:https://www.cnblogs.com/yuanshixingdan/p/5539380.html