304. Range Sum Query 2D - Immutable
304. Range Sum Query 2D - Immutable
Description
Difficulty: Medium
Related Topics: Array, Design, Matrix, Prefix Sum
Given a 2D matrix matrix
, handle multiple queries of the following type:
- Calculate the sum of the elements of
matrix
inside the rectangle defined by its upper left corner(row1, col1)
and lower right corner(row2, col2)
.
Implement the NumMatrix
class:
NumMatrix(int[][] matrix)
Initializes the object with the integer matrixmatrix
.int sumRegion(int row1, int col1, int row2, int col2)
Returns the sum of the elements ofmatrix
inside the rectangle defined by its upper left corner(row1, col1)
and lower right corner(row2, col2)
.
You must design an algorithm where sumRegion
works on O(1)
time complexity.
Example 1:
1 | Input |
Constraints:
m == matrix.length
n == matrix[i].length
1 <= m, n <= 200
- -104 <=
matrix[i][j]
<= 104 0 <= row1 <= row2 < m
0 <= col1 <= col2 < n
- At most 104 calls will be made to
sumRegion
.
Hints/Notes
- 2D preSum
Solution
Language: C++
1 | class NumMatrix { |