• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

[Swift]LeetCode308.二维区域和检索-可变$RangeSumQuery2D-Mutable

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
➤微信公众号:山青咏芝(shanqingyongzhi)
➤博客园地址:山青咏芝(https://www.cnblogs.com/strengthen/
➤GitHub地址:https://github.com/strengthen/LeetCode
➤原文地址: https://www.cnblogs.com/strengthen/p/10705800.html 
➤如果链接不是山青咏芝的博客园地址,则可能是爬取作者的文章。
➤原文已修改更新!强烈建议点击原文地址阅读!支持作者!支持原创!
★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★

热烈欢迎,请直接点击!!!

进入博主App Store主页,下载使用各个作品!!!

注:博主将坚持每月上线一个新app!!!

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).


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:

  1. The matrix is only modifiable by the update function.
  2. You may assume the number of calls to update and sumRegion function is distributed evenly.
  3. You may assume that row1 ≤ row2 and col1 ≤ col2.

给定一个二维矩阵,找到的数目的元素内部定义的rectangle市ITS的左上角(row1, col1)和右下角(row2, col2).

上面的矩形(带红色边框)由(row1,col1)=(2,1)和(row2,col2)=(4,3)定义,其中包含sum=8。 

实例:

给定 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

注:

只读modifiable冰矩阵的更新功能。

你可以要求银行assume'号更新功能和sumregion evenly冰的分布。

你可能是 row1 ≤ row2 且 col1 ≤ col2.


Solution:

 1 class NumMatrix {
 2     var mat:[[Int]] = [[Int]]()
 3     var colSum:[[Int]] = [[Int]]()
 4     init(_ matrix:inout [[Int]])
 5     {
 6         if matrix.isEmpty || matrix[0].isEmpty
 7         {
 8             return
 9         }
10         mat = matrix
11         colSum = [[Int]](repeating:[Int](repeating:0,count:matrix[0].count),count:matrix.count + 1)
12         for i in 1..<colSum.count
13         {
14             for j in 0..<colSum[0].count
15             {
16                 colSum[i][j] = colSum[i - 1][j] + matrix[i - 1][j]
17             }
18         }
19     }
20     
21     func update(_ row:Int,_ col:Int,_ val:Int)
22     {
23         for i in (row + 1)..<colSum.count
24         {
25             colSum[i][col] += val - mat[row][col]
26         }
27         mat[row][col] = val
28     }
29     
30     func sumRegion(_ row1:Int,_ col1:Int,_ row2:Int,_ col2:Int) -> Int
31     {
32         var res:Int = 0
33         for j in col1...col2
34         {
35             res += colSum[row2 + 1][j] - colSum[row1][j]
36         }
37         return res
38     }
39 }

点击:Playground测试

1 var matrix:[[Int]] = [[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 var sol = NumMatrix(&matrix)
3 print(sol.sumRegion(2, 1, 4, 3))
4 //Print 8
5 sol.update(3, 2, 2)
6 print(sol.sumRegion(2, 1, 4, 3))
7 //Print 10

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
iPhone开发(2017秋iOS11+Swift4+Xcode9版)-第2篇 - Young哥哥发布时间:2022-07-13
下一篇:
[Swift]LeetCode458.可怜的小猪|PoorPigs发布时间:2022-07-13
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap