Codeforces Round #430 (Div. 2)

Posted 早知如此绊人心,何如当初莫相识。

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces Round #430 (Div. 2)相关的知识,希望对你有一定的参考价值。

题意:给出一个圆环,问有多少个圆完全在内环和外环之间

 1 #include<bits/stdc++.h>
 2 using namespace std;
 3 typedef long long ll;
 4 const int N=1e5+10;
 5 
 6 
 7 int main(){
 8    int r,d;
 9    cin>>r>>d;
10    int n;
11    cin>>n;
12    d=r-d;
13    int x,y,r1;
14    int sum=0;
15    for(int i=1;i<=n;i++){
16         scanf("%d%d%d",&x,&y,&r1);
17         int z=(x*x+y*y);
18         double l=sqrt(z);
19        // printf("%f\n",l);
20         if(l>=(d+r1)*1.0&&(l+r1)*1.0<=r*1.0){
21             sum++;
22         }
23    }
24    cout<<sum<<endl;
25 }

 

以上是关于Codeforces Round #430 (Div. 2)的主要内容,如果未能解决你的问题,请参考以下文章

Codeforces Round #430 (Div. 2) C

codeforces round 430 div 2

C - Ilya And The Tree Codeforces Round #430 (Div. 2)

Codeforces Round #430 (Div. 2) A C D三个题

Codeforces Round #436 E. Fire(背包dp+输出路径)

[ACM]Codeforces Round #534 (Div. 2)