forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_308.java
91 lines (82 loc) · 2.97 KB
/
_308.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
package com.fishercoder.solutions;
/**
* 308. Range Sum Query 2D - Mutable
*
* Given a 2D matrix matrix,
* find the sum of the elements inside the rectangle defined by its upper left corner (row1, col1) and lower right corner (row2, col2).
Range Sum Query 2D
The above rectangle (with the red border) is defined by (row1, col1) = (2, 1) and (row2, col2) = (4, 3), which contains sum = 8.
Example:
Given matrix = [
[3, 0, 1, 4, 2],
[5, 6, 3, 2, 1],
[1, 2, 0, 1, 5],
[4, 1, 0, 1, 7],
[1, 0, 3, 0, 5]
]
sumRegion(2, 1, 4, 3) -> 8
update(3, 2, 2)
sumRegion(2, 1, 4, 3) -> 10
Note:
The matrix is only modifiable by the update function.
You may assume the number of calls to update and sumRegion function is distributed evenly.
You may assume that row1 ≤ row2 and col1 ≤ col2.
*/
public class _308 {
public static class Solution1 {
public class NumMatrix {
int[][] nums;
int[][] tree;
int height;
int width;
public NumMatrix(int[][] matrix) {
if (matrix.length == 0 || matrix[0].length == 0) {
return;
}
height = matrix.length;
width = matrix[0].length;
this.nums = new int[height][width];
this.tree = new int[height + 1][width + 1];
for (int i = 0; i < height; i++) {
for (int j = 0; j < width; j++) {
update(i, j, matrix[i][j]);
}
}
}
public void update(int rowIndex, int colIndex, int newVal) {
if (height == 0 || width == 0) {
return;
}
int delta = newVal - nums[rowIndex][colIndex];
nums[rowIndex][colIndex] = newVal;
for (int i = rowIndex + 1; i <= height; i += i & (-i)) {
for (int j = colIndex + 1; j <= width; j += j & (-j)) {
tree[i][j] += delta;//just use its previous value plus delta is good
}
}
}
public int sumRegion(int row1, int col1, int row2, int col2) {
if (height == 0 || width == 0) {
return 0;
}
return sum(row2 + 1, col2 + 1) + sum(row1, col1) - sum(row1, col2 + 1) - sum(
row2 + 1, col1);
}
private int sum(int row, int col) {
int sum = 0;
for (int i = row; i > 0; i -= i & (-i)) {
for (int j = col; j > 0; j -= j & (-j)) {
sum += tree[i][j];
}
}
return sum;
}
}
/**
* Your NumMatrix object will be instantiated and called as such:
* NumMatrix obj = new NumMatrix(matrix);
* obj.update(row,col,val);
* int param_2 = obj.sumRegion(row1,col1,row2,col2);
*/
}
}