剑指offer013-二维子矩阵的和

二维子矩阵的和

Posted by 高明 on 2020-01-01

剑指offer013-二维子矩阵的和

题目

给定一个二维矩阵 matrix以下类型的多个请求:

  • 计算其子矩形范围内元素的总和,该子矩阵的左上角为 (row1, col1) ,右下角为 (row2, col2)

实现 NumMatrix 类:

  • NumMatrix(int[][] matrix) 给定整数矩阵 matrix 进行初始化
  • int sumRegion(int row1, int col1, int row2, int col2) 返回左上角 (row1, col1) 、右下角 (row2, col2) 的子矩阵的元素总和。

 

示例 1:

输入: 
["NumMatrix","sumRegion","sumRegion","sumRegion"]
[[[[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]]],[2,1,4,3],[1,1,2,2],[1,2,2,4]]
输出: 
[null, 8, 11, 12]

解释:
NumMatrix numMatrix = new NumMatrix([[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]]]);
numMatrix.sumRegion(2, 1, 4, 3); // return 8 (红色矩形框的元素总和)
numMatrix.sumRegion(1, 1, 2, 2); // return 11 (绿色矩形框的元素总和)
numMatrix.sumRegion(1, 2, 2, 4); // return 12 (蓝色矩形框的元素总和)

 

提示:

  • m == matrix.length
  • n == matrix[i].length
  • 1 <= m, n <= 200
  • -105 <= matrix[i][j] <= 105
  • 0 <= row1 <= row2 < m
  • 0 <= col1 <= col2 < n
  • 最多调用 104 次 sumRegion 方法

 

注意:本题与主站 304 题相同: https://leetcode-cn.com/problems/range-sum-query-2d-immutable/

Related Topics
  • 设计
  • 数组
  • 矩阵
  • 前缀和

  • 👍 12
  • 👎 0
  • 思路

    思路,一维前缀和,或者二维前缀和

    代码

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    class NumMatrix {
    int[][] sums;

    public NumMatrix(int[][] matrix) {
    int m = matrix.length;
    if (m > 0) {
    int n = matrix[0].length;
    sums = new int[m + 1][n + 1];
    for (int i = 0; i < m; i++) {
    for (int j = 0; j < n; j++) {
    sums[i + 1][j + 1] = sums[i][j + 1] + sums[i + 1][j] - sums[i][j] + matrix[i][j];
    }
    }
    }
    }

    public int sumRegion(int row1, int col1, int row2, int col2) {
    return sums[row2 + 1][col2 + 1] - sums[row1][col2 + 1] - sums[row2 + 1][col1] + sums[row1][col1];
    }
    }
    1
    2
    3
    解答成功:
    执行耗时:45 ms,击败了74.75% 的Java用户
    内存消耗:63.1 MB,击败了70.48% 的Java用户