Editorial for Bubble Cup V8 I Robots protection
Submitting an official solution before solving the problem yourself is a bannable offence.
To solve this problem, we should first take a look at one easier problem. Consider having the same problem statement, but with rectangles instead of triangles. The solution to this problem is pretty straightforward. We will store a matrix representing points in our coordinate system. For each type 1 query, given the rectangle
We will use this approach with some modification to solve the original problem. For handling the triangles we need to introduce new coordinate systems. Depending on the type of triangle (types 1 and 4 are analogous, so are types 2 and 3) we will make two new coordinate systems, where the corresponding hypotenuses are parallel to one axis. For types 2 and 3, point
The problem is now somewhat abstracted to the simple rectangle problem. This time we will need three matrices, one representing the original coordinate system and two representing the introduced coordinate systems. For each triangle we need to border it with
For calculating the answer for type 2 query, we need to sum the values in the rectangle from
Since we are using binary indexed tree, the time complexity of this solution is
Comments