zoukankan      html  css  js  c++  java
  • New Year Table(几何)

    New Year Table
    Time Limit:2000MS     Memory Limit:262144KB     64bit IO Format:%I64d & %I64u

    Description

    Gerald is setting the New Year table. The table has the form of a circle; its radius equals R. Gerald invited many guests and is concerned whether the table has enough space for plates for all those guests. Consider all plates to be round and have the same radii that equal r. Each plate must be completely inside the table and must touch the edge of the table. Of course, the plates must not intersect, but they can touch each other. Help Gerald determine whether the table is large enough for n plates.

    Input

    The first line contains three integers n, R and r (1 ≤ n ≤ 100, 1 ≤ r, R ≤ 1000) — the number of plates, the radius of the table and the plates' radius.

    Output

    Print "YES" (without the quotes) if it is possible to place n plates on the table by the rules given above. If it is impossible, print "NO".

    Remember, that each plate must touch the edge of the table.

    Sample Input

    Input
    4 10 4
    Output
    YES
    Input
    5 10 4
    Output
    NO
    Input
    1 10 10
    Output
    YES

    Hint

    The possible arrangement of the plates for the first sample is

    题解:小圆贴着大圆的边,问是否能放n个;注意精度;

    代码:

    #include<iostream>
    #include<cstdio>
    #include<cmath>
    #in
    clude<algorithm>
    using namespace std;
    const double PI = acos(-1.0);
    int main(){
        int n, R, r;
        while(~scanf("%d%d%d", &n, &R, &r)){
            if(r > R){
                if(n == 0)
                    puts("YES");
                else
                    puts("NO");
                continue;
            }
            else if(r == R){
                if(n <= 1)
                    puts("YES");
                else
                    puts("NO");
                continue;
            }
    
            else if(2 * r > R){
                if(n <= 1)
                    puts("YES");
                else
                    puts("NO");
                continue;
            }
            double cosa = (2.0 * (R - r) * (R - r) - (2.0*r) * (2.0*r))/ (2.0*(R-r)*(R-r));
            double a = acos(cosa);
            //printf("%lf
    ", 2.0 * PI / a);
            if((n - 2.0 * PI / a) <= 1e-10){
                puts("YES");
            }
            else{
                puts("NO");
            }
        }
    }
  • 相关阅读:
    共享一个从字符串转 Lambda 表达式的类(2)
    多个文件上传控件
    使用 SQL的 for xml path来进行字符串拼接
    数据结构之双向链表
    我的收藏颜色代码表
    C++中的字节对齐分析
    收藏sina播放器嵌入代码
    弃用数据库自增ID,曝光一下我自己用到的解决方法之终结篇
    google工作原理图
    easyicon一个非常好用的找图标的网站
  • 原文地址:https://www.cnblogs.com/handsomecui/p/5489121.html
Copyright © 2011-2022 走看看