码迷,mamicode.com
首页 > 其他好文 > 详细

Leetcode Maximal Rectangle

时间:2014-06-26 15:08:46      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   http   color   

Given a 2D binary matrix filled with 0‘s and 1‘s, find the largest rectangle containing all ones and return its area.

时间复杂度O(n^3),最大全1子矩阵,利用直方图求解,可以参考对最大全零子矩阵的研究

class Solution {
public:
    int maximalRectangle(vector<vector<char> > &matrix) {
        if(matrix.empty()) return 0;
        int w = matrix[0].size(),h = matrix.size(), res = 0;
        for(int i = 0 ; i < w; ++ i){
            char row[h];
            for(int j =  i ; j < w; ++ j){
                if( j == i ){
                    for(int k = 0 ; k <  h; ++ k){
                        row[k] = matrix[k][i];
                    }
                }else{
                    for(int k = 0 ; k < h; ++ k){
                        if(matrix[k][j]!=matrix[k][j-1]) row[k]=X;
                    }
                    
                }
                int cnt = 0 ,maxCnt = 0;
                for(int k = 0 ; k < h ; ++ k){
                    if(row[k] == X || row[k] == 0) cnt = 0;
                    else if((cnt > 0) && row[k]==row[k-1] ){
                        cnt++;
                    }else cnt = 1;
                    maxCnt = max(maxCnt, cnt);
                }
                res = max(res,maxCnt*(j-i+1));
            }
        }
        return res;
    }
};

 

Leetcode Maximal Rectangle,布布扣,bubuko.com

Leetcode Maximal Rectangle

标签:style   class   blog   code   http   color   

原文地址:http://www.cnblogs.com/xiongqiangcs/p/3809140.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!