#P8335. [Ynoi2004] tars2

[Ynoi2004] tars2

Problem Description

You need to maintain integer lattice points on a plane. Each point initially has weight 00. There are mm operations in total.

Update operation: given x,y,d,wx,y,d,w, increase the weight of every integer point (X,Y)(X,Y) satisfying Xx<d,Yy<d|X-x|<d,|Y-y|<d by w(dmax(Xx,Yy))w\cdot(d-\max(|X-x|,|Y-y|)).

Query operation: given x1,x2,y1,y2x_1,x_2,y_1,y_2, query the sum of weights of all integer points (X,Y)(X,Y) satisfying x1Xx2,  y1Yy2x_1\le X\le x_2,\;y_1\le Y\le y_2. The answer is taken modulo 2302^{30}.

Input Format

The first line contains an integer mm. The next mm lines each describe one operation.

An update operation is given as 1 x y d w.

A query operation is given as 2 x1 x2 y1 y2.

Output Format

For each query operation, output one line containing an integer, which is the answer after taking modulo.

5
1 3 4 5 1
2 1 4 3 5
1 2 4 2 2
2 4 5 3 5
1 4 4 4 8
46
21

Hint

Idea: nzhtl1477, Solution: ccz181078, Code: ccz181078, Data: ccz181078.

Constraints: For 100%100\% of the testdata, 1m1051\le m\le 10^5, 1x1x21081\le x_1\le x_2\le {10}^8, 1y1y21081\le y_1\le y_2\le {10}^8, 1x,y,d,w1081\le x,y,d,w\le {10}^8.

Translated by ChatGPT 5