# 0304. Range Sum Query 2D - Immutable ###### tags: `Leetcode` `FaceBook` `Medium` `Prefix Sum` Link: https://leetcode.com/problems/range-sum-query-2d-immutable/ ## 思路 Prefix Sum 为了减少边界条件的判断,存的时候就用更大的矩阵 ## Code ```java= class NumMatrix { int[][] dp; public NumMatrix(int[][] matrix) { this.dp = new int[matrix.length+1][matrix[0].length+1]; for(int i = 0;i < matrix.length;i++){ for(int j = 0;j < matrix[0].length;j++){ dp[i+1][j+1] = dp[i+1][j]+dp[i][j+1]+matrix[i][j]-dp[i][j]; } } } public int sumRegion(int row1, int col1, int row2, int col2) { return dp[row2+1][col2+1]+dp[row1][col1]-dp[row1][col2+1]-dp[row2+1][col1]; } } ```
×
Sign in
Email
Password
Forgot password
or
By clicking below, you agree to our
terms of service
.
Sign in via Facebook
Sign in via Twitter
Sign in via GitHub
Sign in via Dropbox
Sign in with Wallet
Wallet (
)
Connect another wallet
New to HackMD?
Sign up