【Codeforces 842 B】Gleb And Pizza,模拟,几何。

problem

B. Gleb And Pizza
time limit per test2 seconds
memory limit per test256 megabytes
inputstandard input
outputstandard output
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.

Input
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.

Output
Output the number of pieces of sausage that lay on the crust.

Examples
inputCopy
8 4
7
7 8 1
-7 3 2
0 2 1
0 -2 2
-3 -3 1
0 6 2
5 3 1
outputCopy
2
inputCopy
10 8
4
0 0 9
0 0 10
1 0 1
1 0 2
outputCopy
0
Note
Below is a picture explaining the first example. Circles of green color denote pieces of sausage lying on the crust.

solution
/*
题意:给出一个圆环和n个圆,求多少个圆在圆环内
思路:先检查它是否在大圆内,再检查它是否在小圆外。
*/
#include<bits/stdc++.h>
using namespace std;
int main(){
	double r, d;  cin>>r>>d;
	int n;  cin>>n;
	int ans = 0;
	for(int i = 1; i <= n; i++){
		double x, y, r1;  cin>>x>>y>>r1;
		double c = sqrt(x*x+y*y);
		if(r-c>=r1 && c-(r-d)-r1>=0)ans++;
	}
	cout<<ans<<"\n";
	return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

小哈里

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值