• [1040] Meeting

  • 时间限制: 1000 ms 内存限制: 65535 K
  • 问题描述
  • 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 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

    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 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.
  • 样例输入
  • 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
  • 样例输出
  • 4
    0
    
  • 提示
  • 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.
  • 来源
  • CodeForces Round 103 DIV2
  • 操作

显示春菜