#Lutece0812. How About Some More Circles?
How About Some More Circles?
Migrated from Lutece 812 How About Some More 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 m points on a XOY
plane.
The points' position may coincide.
Kufeng also has n circles, the position of each circle's center, as long as the initial radius of each circle are given to you.
Each point and each circle has a unique id, the id will also given.
Each time, Kufeng can operate the machine, and he can add or delete a circle or point on the plane. If he adds a new circle or point, he gives that circle or point a new id, which will be different from all ids before, or he can delete a circle or point, in that case he just delete it forever.
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 a certain circle.
Because Kufeng's special sense of beauty, it is guaranteed that the circumference of all the circles given in the input(including the original ones and the added ones) will not intersect with each other, not even touch with each other.
Input
The first line of the input contains two numbers and , the number of circles and the number of points that is originally on the plane. (, )
The next lines each with four numbers , which means there is a circle on the plane with id as , with center located at , and with radius length . ()
The next lines each with three numbers , which means there is point on the plane with id as , and 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 id x y r
: Kufeng will add a new circle on the plane, with id as , the centre located at , with radius as .2 id x y
: Kufeng will add a new point on the plane, with id as , the centre located at .3 id
: Kufeng will delete the circle or point with id as .4 id
: Kufeng has a question for you. If the correspond to a circle, output its total energy, otherwise output the number of circles the point serve energy to.
No circles or points will share a same id. All the numbers given in input are integers.
All the ids will be postive and will not exceed 150000.
Output
For each type of id, output the answer on a single line.
Samples
1 1
1 1 1 2
2 0 1
6
4 1
4 2
2 3 2 1
4 1
3 3
4 1
1
1
2
1
Resources
the 12th UESTC Programming Contest Final