#Lutece0800. How About Some Circles?
How About Some Circles?
Migrated from Lutece 800 How About Some Circles?
All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.
Description
Kufeng is fond of circles. He builds a big machine which deal with circles and points.
There are points on a plane. The points' position may coincide. Kufeng also has circles, the position of each circle's center, as long as the initial radius of each circle are given to you.
Each time, Kufeng can operate the machine, and change some circles' radius.
The points give energy to the circles, the total energy for a circle is the number of points that strictly lie inside that circle. A point might serve energy to more than one circle.
At some time, Kufeng wants to know the total energy of some circles.
Input
The first line of the input contains two numbers and , the number of circles and the number of points.
The next lines each with three numbers , which means the circle on the plane. With center located at , and with radius length .
The next lines each with three numbers , which means the point on the plane located at .
The next lines contain a number , the number of operations Kufeng will do.
The next lines each can be given in the following two types:
1 l r val
: Kufeng will operate on all the circles, from to , inclusive, and change those circles' radius to .
2 l r
: Kufeng will calculate the sum of energy of all the circles, from to , inclusive.
Output
For each type of 2 l r
, output the answer in a line.
Samples
3 4
1 0 1
1 1 1
1 2 1
0 0
2 0
2 2
0 2
5
2 1 3
1 2 2 2
2 1 3
1 1 3 2
2 1 3
0
4
8
Resources
the 12th UESTC Programming Contest Preliminary