返回介绍

solution / 2500-2599 / 2536.Increment Submatrices by One / README

发布于 2024-06-17 01:03:04 字数 5883 浏览 0 评论 0 收藏 0

2536. 子矩阵元素加 1

English Version

题目描述

给你一个正整数 n ,表示最初有一个 n x n 、下标从 0 开始的整数矩阵 mat ,矩阵中填满了 0 。

另给你一个二维整数数组 query 。针对每个查询 query[i] = [row1i, col1i, row2i, col2i] ,请你执行下述操作:

  • 找出 左上角(row1i, col1i)右下角(row2i, col2i) 的子矩阵,将子矩阵中的 每个元素1 。也就是给所有满足 row1i <= x <= row2icol1i <= y <= col2imat[x][y]1

返回执行完所有操作后得到的矩阵 mat

 

示例 1:

输入:n = 3, queries = [[1,1,2,2],[0,0,1,1]]
输出:[[1,1,0],[1,2,1],[0,1,1]]
解释:上图所展示的分别是:初始矩阵、执行完第一个操作后的矩阵、执行完第二个操作后的矩阵。
- 第一个操作:将左上角为 (1, 1) 且右下角为 (2, 2) 的子矩阵中的每个元素加 1 。 
- 第二个操作:将左上角为 (0, 0) 且右下角为 (1, 1) 的子矩阵中的每个元素加 1 。 

示例 2:

输入:n = 2, queries = [[0,0,1,1]]
输出:[[1,1],[1,1]]
解释:上图所展示的分别是:初始矩阵、执行完第一个操作后的矩阵。 
- 第一个操作:将矩阵中的每个元素加 1 。

 

提示:

  • 1 <= n <= 500
  • 1 <= queries.length <= 104
  • 0 <= row1i <= row2i < n
  • 0 <= col1i <= col2i < n

解法

方法一:二维差分

二维差分模板题。

mat = [[0] * (n + 1) for _ in range(n + 1)]


def insert(x1, y1, x2, y2, c):
  mat[x1][y1] += c
  mat[x1][y2 + 1] -= c
  mat[x2 + 1][y1] -= c
  mat[x2 + 1][y2 + 1] += c


for i in range(1, n + 1):
  for j in range(1, n + 1):
    mat[i][j] += mat[i - 1][j] + mat[i][j - 1] - mat[i - 1][j - 1]

时间复杂度 $O(m + n^2)$,其中 $m$ 和 $n$ 分别是 queries 的长度和给定的 $n$。忽略答案的空间消耗,空间复杂度 $O(1)$。

class Solution:
  def rangeAddQueries(self, n: int, queries: List[List[int]]) -> List[List[int]]:
    mat = [[0] * n for _ in range(n)]
    for x1, y1, x2, y2 in queries:
      mat[x1][y1] += 1
      if x2 + 1 < n:
        mat[x2 + 1][y1] -= 1
      if y2 + 1 < n:
        mat[x1][y2 + 1] -= 1
      if x2 + 1 < n and y2 + 1 < n:
        mat[x2 + 1][y2 + 1] += 1

    for i in range(n):
      for j in range(n):
        if i:
          mat[i][j] += mat[i - 1][j]
        if j:
          mat[i][j] += mat[i][j - 1]
        if i and j:
          mat[i][j] -= mat[i - 1][j - 1]
    return mat
class Solution {
  public int[][] rangeAddQueries(int n, int[][] queries) {
    int[][] mat = new int[n][n];
    for (var q : queries) {
      int x1 = q[0], y1 = q[1], x2 = q[2], y2 = q[3];
      mat[x1][y1]++;
      if (x2 + 1 < n) {
        mat[x2 + 1][y1]--;
      }
      if (y2 + 1 < n) {
        mat[x1][y2 + 1]--;
      }
      if (x2 + 1 < n && y2 + 1 < n) {
        mat[x2 + 1][y2 + 1]++;
      }
    }
    for (int i = 0; i < n; ++i) {
      for (int j = 0; j < n; ++j) {
        if (i > 0) {
          mat[i][j] += mat[i - 1][j];
        }
        if (j > 0) {
          mat[i][j] += mat[i][j - 1];
        }
        if (i > 0 && j > 0) {
          mat[i][j] -= mat[i - 1][j - 1];
        }
      }
    }
    return mat;
  }
}
class Solution {
public:
  vector<vector<int>> rangeAddQueries(int n, vector<vector<int>>& queries) {
    vector<vector<int>> mat(n, vector<int>(n));
    for (auto& q : queries) {
      int x1 = q[0], y1 = q[1], x2 = q[2], y2 = q[3];
      mat[x1][y1]++;
      if (x2 + 1 < n) {
        mat[x2 + 1][y1]--;
      }
      if (y2 + 1 < n) {
        mat[x1][y2 + 1]--;
      }
      if (x2 + 1 < n && y2 + 1 < n) {
        mat[x2 + 1][y2 + 1]++;
      }
    }
    for (int i = 0; i < n; ++i) {
      for (int j = 0; j < n; ++j) {
        if (i > 0) {
          mat[i][j] += mat[i - 1][j];
        }
        if (j > 0) {
          mat[i][j] += mat[i][j - 1];
        }
        if (i > 0 && j > 0) {
          mat[i][j] -= mat[i - 1][j - 1];
        }
      }
    }
    return mat;
  }
};
func rangeAddQueries(n int, queries [][]int) [][]int {
  mat := make([][]int, n)
  for i := range mat {
    mat[i] = make([]int, n)
  }
  for _, q := range queries {
    x1, y1, x2, y2 := q[0], q[1], q[2], q[3]
    mat[x1][y1]++
    if x2+1 < n {
      mat[x2+1][y1]--
    }
    if y2+1 < n {
      mat[x1][y2+1]--
    }
    if x2+1 < n && y2+1 < n {
      mat[x2+1][y2+1]++
    }
  }
  for i := 0; i < n; i++ {
    for j := 0; j < n; j++ {
      if i > 0 {
        mat[i][j] += mat[i-1][j]
      }
      if j > 0 {
        mat[i][j] += mat[i][j-1]
      }
      if i > 0 && j > 0 {
        mat[i][j] -= mat[i-1][j-1]
      }
    }
  }
  return mat
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文