/ OPS / 题库 /

Meeting

Meeting

#描述#
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.</br >
</br >
Some points on the plane contain radiators for the generals not to freeze in winter. Each radiator is characterized by the number ri — 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 ri, than the general feels comfortable and warm. Here distance is defined as Euclidean distance, so the distance between points (x1, y1) and (x2, y2) is <img src="http://bbs.zjut.com/attachments/forumid_369/1203171303f868bbfcc2e0a131.png"></br >
</br >
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.</br >
</br >
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.</br >

#格式#
##输入格式##
The first input line contains coordinates of two opposite table corners xa, ya, xb, yb (xa ≠ xb, ya ≠ yb). The second line contains integer n — the number of radiators (1 ≤ n ≤ 10^3). Then n lines contain the heaters' coordinates as "xi yi ri", the numbers are separated by spaces. All input data numbers are integers. The absolute value of all coordinates does not exceed 1000, 1 ≤ ri ≤ 1000. Several radiators can be located at the same point.

##输出格式##
Print the only number — the number of blankets you should bring.

#样例1#
##样例输入1##

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

##样例输出1##

4
0

#限制#
1000ms
32768KB

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

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

#来源#

信息

ID
1976
难度
5
分类
category1 点击显示
标签
递交数
0
已通过
0
通过率
?
上传者