#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 nn and mm, the number of circles and the number of points that is originally on the plane. (1n100001\leq n\leq 10000, 1m100001\leq m\leq 10000)

The next nn lines each with four numbers idi,xi,yi,riid_i,x_i,y_i,r_i, which means there is a circle on the plane with id as idiid_i, with center located at (xi,yi)(x_i,y_i), and with radius length rir_i. (10000xi,yi10000,1ri10000-10000\leq x_i,y_i\leq 10000, 1\leq r_i\leq 10000)

The next mm lines each with three numbers idi,pxi,pyiid_i, px_i,py_i, which means there is point on the plane with id as idiid_i, and located at (pxi,pyi)(px_i,py_i). (10000pxi,pyi10000-10000\leq px_i,py_i\leq 10000)

The next lines contain a number qq, the number of operations Kufeng will do. (1q1000001\leq q\leq 100000) The next qq 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 idid, the centre located at (x,y)(x, y), with radius as rr.
  • 2 id x y: Kufeng will add a new point on the plane, with id as idid, the centre located at (x,y)(x, y).
  • 3 id: Kufeng will delete the circle or point with id as idid.
  • 4 id: Kufeng has a question for you. If the idid 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 44 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