返回介绍

solution / 1500-1599 / 1504.Count Submatrices With All Ones / README_EN

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

1504. Count Submatrices With All Ones

中文文档

Description

Given an m x n binary matrix mat, _return the number of submatrices that have all ones_.

 

Example 1:

Input: mat = [[1,0,1],[1,1,0],[1,1,0]]
Output: 13
Explanation: 
There are 6 rectangles of side 1x1.
There are 2 rectangles of side 1x2.
There are 3 rectangles of side 2x1.
There is 1 rectangle of side 2x2. 
There is 1 rectangle of side 3x1.
Total number of rectangles = 6 + 2 + 3 + 1 + 1 = 13.

Example 2:

Input: mat = [[0,1,1,0],[0,1,1,1],[1,1,1,0]]
Output: 24
Explanation: 
There are 8 rectangles of side 1x1.
There are 5 rectangles of side 1x2.
There are 2 rectangles of side 1x3. 
There are 4 rectangles of side 2x1.
There are 2 rectangles of side 2x2. 
There are 2 rectangles of side 3x1. 
There is 1 rectangle of side 3x2. 
Total number of rectangles = 8 + 5 + 2 + 4 + 2 + 2 + 1 = 24.

 

Constraints:

  • 1 <= m, n <= 150
  • mat[i][j] is either 0 or 1.

Solutions

Solution 1

class Solution:
  def numSubmat(self, mat: List[List[int]]) -> int:
    m, n = len(mat), len(mat[0])
    g = [[0] * n for _ in range(m)]
    for i in range(m):
      for j in range(n):
        if mat[i][j]:
          g[i][j] = 1 if j == 0 else 1 + g[i][j - 1]
    ans = 0
    for i in range(m):
      for j in range(n):
        col = inf
        for k in range(i, -1, -1):
          col = min(col, g[k][j])
          ans += col
    return ans
class Solution {
  public int numSubmat(int[][] mat) {
    int m = mat.length, n = mat[0].length;
    int[][] g = new int[m][n];
    for (int i = 0; i < m; ++i) {
      for (int j = 0; j < n; ++j) {
        if (mat[i][j] == 1) {
          g[i][j] = j == 0 ? 1 : 1 + g[i][j - 1];
        }
      }
    }
    int ans = 0;
    for (int i = 0; i < m; ++i) {
      for (int j = 0; j < n; ++j) {
        int col = 1 << 30;
        for (int k = i; k >= 0 && col > 0; --k) {
          col = Math.min(col, g[k][j]);
          ans += col;
        }
      }
    }
    return ans;
  }
}
class Solution {
public:
  int numSubmat(vector<vector<int>>& mat) {
    int m = mat.size(), n = mat[0].size();
    vector<vector<int>> g(m, vector<int>(n));
    for (int i = 0; i < m; ++i) {
      for (int j = 0; j < n; ++j) {
        if (mat[i][j] == 1) {
          g[i][j] = j == 0 ? 1 : 1 + g[i][j - 1];
        }
      }
    }
    int ans = 0;
    for (int i = 0; i < m; ++i) {
      for (int j = 0; j < n; ++j) {
        int col = 1 << 30;
        for (int k = i; k >= 0 && col > 0; --k) {
          col = min(col, g[k][j]);
          ans += col;
        }
      }
    }
    return ans;
  }
};
func numSubmat(mat [][]int) (ans int) {
  m, n := len(mat), len(mat[0])
  g := make([][]int, m)
  for i := range g {
    g[i] = make([]int, n)
    for j := range g[i] {
      if mat[i][j] == 1 {
        if j == 0 {
          g[i][j] = 1
        } else {
          g[i][j] = 1 + g[i][j-1]
        }
      }
    }
  }
  for i := range g {
    for j := range g[i] {
      col := 1 << 30
      for k := i; k >= 0 && col > 0; k-- {
        col = min(col, g[k][j])
        ans += col
      }
    }
  }
  return
}

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

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

发布评论

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