CF144B.Meeting

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

The Super Duper Secret Meeting of the Super Duper Secret Military Squad takes place in a Super Duper Secret Place. The place is an infinite plane with introduced Cartesian coordinate system. The meeting table is represented as a rectangle whose sides are parallel to the coordinate axes and whose vertexes are located at the integer points of the plane. At each integer point which belongs to the table perimeter there is a chair in which a general sits.

Some points on the plane contain radiators for the generals not to freeze in winter. Each radiator is characterized by the number rir_{i} — the radius of the area this radiator can heat. That is, if the distance between some general and the given radiator is less than or equal to rir_{i} , than the general feels comfortable and warm. Here distance is defined as Euclidean distance, so the distance between points (x1,y1)(x_{1},y_{1}) and (x2,y2)(x_{2},y_{2}) is

Each general who is located outside the radiators' heating area can get sick. Thus, you should bring him a warm blanket. Your task is to count the number of warm blankets you should bring to the Super Duper Secret Place.

The generals who are already comfortable do not need a blanket. Also the generals never overheat, ever if they are located in the heating area of several radiators. The radiators can be located at any integer points on the plane, even inside the rectangle (under the table) or on the perimeter (directly under some general). Even in this case their radius does not change.

输入格式

The first input line contains coordinates of two opposite table corners xax_{a} , yay_{a} , xbx_{b} , yby_{b} ( xaxb,yayb)x_{a}≠x_{b},y_{a}≠y_{b}) . The second line contains integer nn — the number of radiators ( 1<=n<=1031<=n<=10^{3} ). Then nn lines contain the heaters' coordinates as " xix_{i} yiy_{i} rir_{i} ", the numbers are separated by spaces. All input data numbers are integers. The absolute value of all coordinates does not exceed 10001000 , 1<=ri<=10001<=r_{i}<=1000 . Several radiators can be located at the same point.

输出格式

Print the only number — the number of blankets you should bring.

输入输出样例

  • 输入#1

    2 5 4 2
    3
    3 1 2
    5 3 1
    1 3 2
    

    输出#1

    4
    
  • 输入#2

    5 2 6 3
    2
    6 2 2
    6 5 3
    

    输出#2

    0
    

说明/提示

In the first sample the generals are sitting at points: (2,2)(2,2) , (2,3)(2,3) , (2,4)(2,4) , (2,5)(2,5) , (3,2)(3,2) , (3,5)(3,5) , (4,2)(4,2) , (4,3)(4,3) , (4,4)(4,4) , (4,5)(4,5) . Among them, 4 generals are located outside the heating range. They are the generals at points: (2,5)(2,5) , (3,5)(3,5) , (4,4)(4,4) , (4,5)(4,5) .

In the second sample the generals are sitting at points: (5,2)(5,2) , (5,3)(5,3) , (6,2)(6,2) , (6,3)(6,3) . All of them are located inside the heating range.

首页