IOI '01 - Tampere, Finland
Suppose that the fourth generation mobile phone base stations in the Tampere area operate as follows. The area is divided into squares. The squares form an
Write a program, which receives these reports and answers queries about the current total number of active mobile phones in any rectangle-shaped area.
Input Specification
The input is read from standard input as integers and the answers to the queries are written to standard output as integers. The input is encoded as follows. Each input comes on a separate line, and consists of one instruction integer and a number of parameter integers according to the following table.
Instruction | Parameters | Meaning |
---|---|---|
0 | Initialize the matrix size to | |
1 | Add | |
2 | Query the current sum of numbers of active mobile phones in squares | |
3 | Terminate program. This instruction is given only once and it will be the last instruction. |
The values will always be in range, so there is no need to check them. In particular, if
Output Specification
Your program should not answer anything to lines with an instruction other than 2
. If the instruction is 2
, then your program is expected to answer the query by writing the answer as a single line containing a single integer to standard output.
Sample Input
0 4
1 1 2 3
2 0 0 2 2
1 1 1 2
1 1 2 -1
2 1 1 2 3
3
Sample Output
3
4
Explanation for Sample Output
Input | Output | Explanation |
---|---|---|
0 4 | Initialize table size to | |
1 1 2 3 | Update table at | |
2 0 0 2 2 | 3 | Query sum of rectangle |
1 1 1 2 | Update table at | |
1 1 2 -1 | Update table at | |
2 1 1 2 3 | 4 | Query sum of rectangle |
3 | Terminate program. |
Constraints
Table size | ||
---|---|---|
Cell value |
||
Update amount | ||
No. of instructions in input | ||
Maximum number of phones in the whole table |
Out of the
Comments
Why am I TLE'ing? I'm implementing a 2-d BIT but I can't AC any of the test cases. My code works for the sample, and even if the code were to be too slow, it should at least pass a few cases. So what's wrong with my code?
Binary indexed trees are generally indexed starting from 1. If you start from 0, your range query indices may become negative, and you may end up with an infinite loop.