CF842B.Gleb And Pizza

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

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 rr and center at the origin. Pizza consists of the main part — circle of radius rdr-d with center at the origin, and crust around the main part of the width dd . Pieces of sausage are also circles. The radius of the ii -th piece of the sausage is rir_{i} , and the center is given as a pair ( xix_{i} , yiy_{i} ).

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 rr and dd ( 0<=d<r<=500 ) — the radius of pizza and the width of crust.

Next line contains one integer number nn — the number of pieces of sausage ( 1<=n<=1051<=n<=10^{5} ).

Each of next nn lines contains three integer numbers xix_{i} , yiy_{i} and rir_{i} ( 500<=xi,yi<=500-500<=x_{i},y_{i}<=500 , 0<=ri<=5000<=r_{i}<=500 ), where xix_{i} and yiy_{i} are coordinates of the center of ii -th peace of sausage, rir_{i} — radius of ii -th peace of sausage.

输出格式

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

输入输出样例

  • 输入#1

    8 4
    7
    7 8 1
    -7 3 2
    0 2 1
    0 -2 2
    -3 -3 1
    0 6 2
    5 3 1
    

    输出#1

    2
    
  • 输入#2

    10 8
    4
    0 0 9
    0 0 10
    1 0 1
    1 0 2
    

    输出#2

    0
    

说明/提示

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

首页