前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >【leetcode第 165 场周赛】统计全为 1 的正方形子矩阵

【leetcode第 165 场周赛】统计全为 1 的正方形子矩阵

作者头像
韩旭051
发布2019-12-03 01:17:57
4990
发布2019-12-03 01:17:57
举报
文章被收录于专栏:刷题笔记刷题笔记

版权声明:本文为博主原创文章,遵循 CC 4.0 BY 版权协议,转载请附上原文出处链接和本声明。

本文链接:https://blog.csdn.net/shiliang97/article/details/103334424

5277. Count Square Submatrices with All Ones

Given a m * n matrix of ones and zeros, return how many square submatrices have all ones.

Example 1:

Input: matrix = [ [0,1,1,1], [1,1,1,1], [0,1,1,1] ] Output: 15 Explanation: There are 10 squares of side 1. There are 4 squares of side 2. There is 1 square of side 3. Total number of squares = 10 + 4 + 1 = 15. Example 2:

Input: matrix = [ [1,0,1], [1,1,0], [1,1,0] ] Output: 7 Explanation: There are 6 squares of side 1. There is 1 square of side 2. Total number of squares = 6 + 1 = 7.

Constraints:

1 <= arr.length <= 300 1 <= arr[0].length <= 300 0 <= arr[i][j] <= 1

来源:力扣(LeetCode) 链接:https://leetcode-cn.com/problems/count-square-submatrices-with-all-ones 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

暴力破解

选好一个起点,每个数都会当一次起点

然后从起点开始,一圈一圈往外扩展,扩展一圈就+1

直到遇到0,就结束扩展,更换下一个起点,遍历所有起点需要 N*M,然后每个起点最多查询N*M的信息,所以复杂度就是 N*M*N*M

代码语言:javascript
复制
class Solution {
public:
    int countSquares(vector<vector<int>>& matrix) {
        int count=0;
        int x = matrix.size();
        int y = matrix[0].size();

        for(int a=0;a<x;a++){
            for(int b=0;b<y;b++){
                int flag=1;
                for(int t=0;b+t<y&&a+t<x;t++){
                    for(int l=0;l<=t;l++){
                        flag=flag&matrix[a+t][b+l]&&matrix[a+l][b+t];
                    }
                    flag=flag&matrix[a+t][b+t];
                    if(flag){
                        //cout<<a<<b<<t<<endl;
                        count++;
                    }else{
                        break;
                    }
                }
            }
        }
        return count;
    }
};
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2019-12-01 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 暴力破解
  • 选好一个起点,每个数都会当一次起点
    • 然后从起点开始,一圈一圈往外扩展,扩展一圈就+1
      • 直到遇到0,就结束扩展,更换下一个起点,遍历所有起点需要 N*M,然后每个起点最多查询N*M的信息,所以复杂度就是 N*M*N*M
      领券
      问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档