B. Gleb And Pizza #430 (Div. 2)

来源:互联网 发布:自救手环 淘宝 编辑:程序博客网 时间:2024/05/18 16:38
B. Gleb And Pizza
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard 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 (xiyi).

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 xiyi and ri ( - 500 ≤ xi, yi ≤ 5000 ≤ 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
input
8 477 8 1-7 3 20 2 10 -2 2-3 -3 10 6 25 3 1
output
2
input
10 840 0 90 0 101 0 11 0 2
output
0
Note

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

给我们一个圆心在原点的大圆的半径r和d,然后给我们很多个小圆问有多少个小圆在大圆内部的(r-d)r之间里面。如上图就只有6和7两个圆
#include <iostream>#include<cstdio>#include<cmath>#include<algorithm>using namespace std;int main(){        double r,d;        scanf("%lf%lf",&r,&d);        int n;        scanf("%d",&n);        int sum=0;        for(int i=0;i<n;i++){                double x,y,rr;                scanf("%lf%lf%lf",&x,&y,&rr);                double dis=sqrt(x*x+y*y);                if(dis-rr>=(r-d)&&dis+rr<=r)                        sum++;        }        printf("%d\n",sum);        return 0;}