1074. Number of Submatrices That Sum to Target

1074. Number of Submatrices That Sum to Target


Given a matrix, and a target, return the number of non-empty submatrices that sum to target.

A submatrix x1, y1, x2, y2 is the set of all cells matrix[x][y] with x1 <= x <= x2 and y1 <= y <= y2.

Two submatrices (x1, y1, x2, y2) and (x1’, y1’, x2’, y2’) are different if they have some coordinate that is different: for example, if x1 != x1’.

Example 1:

Input: matrix = [[0,1,0],[1,1,1],[0,1,0]], target = 0
Output: 4
Explanation: The four 1x1 submatrices that only contain 0.
Example 2:

Input: matrix = [[1,-1],[-1,1]], target = 0
Output: 5
Explanation: The two 1x2 submatrices, plus the two 2x1 submatrices, plus the 2x2 submatrix.

Note:

  1. 1 <= matrix.length <= 300
  2. 1 <= matrix[0].length <= 300
  3. -1000 <= matrix[i] <= 1000
  4. -10^8 <= target <= 10^8

方法1:

参考第363. Max Sum of Rectangle No Larger Than K。

易错点:

  1. set是在每一对l r 都要更新,且要首先插入一个0。
  2. res += hash[sum - target],因为之前可能有多个长方形j满足sum[i] - sum[j] = target。

Complexity

Time complexity: O(n^2 * m)。
Space complexity: O(m),rowsum和hash大小,这里可以取mn两者较小值。

class Solution {
public:
    int numSubmatrixSumTarget(vector<vector<int>>& matrix, int target) {
        int m = matrix.size(), n = matrix[0].size(), res = 0;
        for (int l = 0; l < n; l++) {
            vector<int> rowsum(m, 0);
            for (int r = l; r < n; r++) {
                int sum = 0;
                unordered_map<int, int> hash;
                hash[0] = 1;
                for (int i = 0; i < m ; i++) {
                    rowsum[i] += matrix[i][r];
                    sum += rowsum[i];
                    if (hash.find(sum - target) != hash.end()) res += hash[sum - target];
                    hash[sum]++;
                }
            }
        }
        return res;
    }
};

另一种先求出prefix sum matrix的方法,取代了之前滚动求rowsum的过程,没什么大区别。

class Solution {
public:
    int numSubmatrixSumTarget(vector<vector<int>>& matrix, int target) {
        int m = matrix.size(), n = matrix[0].size(), res = 0;
        vector<vector<int>> presum(m, vector<int>(n, 0));
        for (int i = 0; i < m; i++) {
            for (int j = 0; j < n; j++) {
                cout << i << "i" << j << "j" << endl;
                presum[i][j] = matrix[i][j] + ((j == 0) ? 0 : presum[i][j - 1] );
            }
        }
        
        for (int l = 0; l < n; l++) {
            for (int r = l; r < n; r++) {
                vector<int> rowsum(m, 0);
                unordered_map<int, int> hash;
                hash[0] = 1;
                int sum = 0;
                for (int i = 0; i < m; i++) {
                    rowsum[i] = presum[i][r] - ((l == 0) ? 0 : presum[i][l - 1]);
                    sum += rowsum[i];
                    if (hash.find(sum - target) != hash.end()) res += hash[sum - target];
                    hash[sum]++;
                }
            }
        }
        return res;
    }
};
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值