zl程序教程

您现在的位置是:首页 >  其他

当前栏目

Codeforces 842B Gleb And Pizza几何,水详解编程语言

编程语言 详解 and 几何 Codeforces
2023-06-13 09:20:36 时间

Gleb ordered pizza home. When the courier delivered the pizza, he was very upset, because several pieces of sausage lay on the crust, and he does not really like the crust.

The pizza is a circle of radius r and center at the origin. Pizza consists of the main part — circle of radius r - d with center at the origin, and crust around the main part of the width d. Pieces of sausage are also circles. The radius of the i -th piece of the sausage is ri, and the center is given as a pair (xi, yi).

Gleb asks you to help determine the number of pieces of sausage caught on the crust. A piece of sausage got on the crust, if it completely lies on the crust.


First string contains two integer numbers r and d (0 ≤ d   r ≤ 500) — the radius of pizza and the width of crust.

Next line contains one integer number n — the number of pieces of sausage (1 ≤ n ≤ 105).

Each of next n lines contains three integer numbers xi, yi and ri ( - 500 ≤ xi, yi ≤ 500, 0 ≤ ri ≤ 500), where xi and yi are coordinates of the center of i-th peace of sausage, ri — radius of i-th peace of sausage.


Below is a picture explaining the first example. Circles of green color denote pieces of sausage lying on the crust.


Codeforces 842B Gleb And Pizza几何,水详解编程语言

 


题目链接:http://codeforces.com/contest/842/problem/B

分析:根据圆心到原点的距离这个东西判断一下圆在不在那个环里面就好

下面给出(Python 3.5.2)AC代码:

 

1 r,d=map(int,input().split()) 

2 n=int(input()) 

3 k=0 

4 for i in range(n): 

5 x,y,w=map(int,input().split()) 

6 l=(x**2+y**2)**(1/2) 

7 if l-w =r-d and l+w =r: 

8 k+=1 

9 print(k)

 

原创文章,作者:Maggie-Hunter,如若转载,请注明出处:https://blog.ytso.com/11965.html

cgojavapython