Codeforces 140ANew Year Table
Posted awcxv
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces 140ANew Year Table相关的知识,希望对你有一定的参考价值。
【链接】 我是链接,点我呀:)
【题意】
题意
【题解】
算出来每个盘子要占用多少角度。
然后乘n看看是不是小于等于2π就好
(精度最好定在1e-7)
【代码】
#include <bits/stdc++.h>
#define ll long long
#define double long double
using namespace std;
const int N = 3e5;
double pi = acos(-1.0);
int n;
double R,r;
double sqr(double x){
return x*x;
}
int main(){
ios::sync_with_stdio(0),cin.tie(0);
cin >> n >> R >> r;
if (r>R){
cout<<"NO"<<endl;
}else if (r<=R){
if (r*2<=R){
double a = asin(r/(R-r));
if (a*2*n-(1e-7)>2*pi){
cout<<"NO"<<endl;
}else cout<<"YES"<<endl;
}else{
if (n==1){
cout<<"YES"<<endl;
}else{
cout<<"NO"<<endl;
}
}
}
return 0;
}
以上是关于Codeforces 140ANew Year Table的主要内容,如果未能解决你的问题,请参考以下文章
CodeForces 140C New Year Snowm
CodeForces - 140C New Year Snowmen
CodeForces 140C New Year Snowmen(堆)
codeforces 140E.New Year Garland