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

Maximal Rectangle

时间:2014-08-21 22:45:04      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   for   ar   问题   div   

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

思路:参见《浅谈用极大化思想解决最大子矩形问题》。这道题我不会,还是贴代码吧。

class Solution {
public:
    int maximalRectangle( vector<vector<char>> &matrix ) {
        if( matrix.empty() ) { return 0; }
        int n = matrix[0].size();
        vector<int> H( n, 0 );
        vector<int> L( n, 0 );
        vector<int> R( n, n );
        int ret = 0;
        for( int i = 0; i < matrix.size(); ++i ) {
            int left = 0, right = n;
            for( int j = 0; j < n; ++j ) {
                if( matrix[i][j] == 0 ) {
                    H[j] = 0; L[j] = 0; R[j] = n;
                    left = j+1;
                } else {
                    ++H[j];
                    L[j] = max( L[j], left );
                }
            }
            for( int j = n-1; j >= 0; --j ) {
                if( matrix[i][j] == 0 ) {
                    right = j;
                } else {
                    R[j] = min( R[j], right );
                    ret = max( ret, (R[j]-L[j])*H[j] );
                }
            }
        }
        return ret;
    }
};

 

Maximal Rectangle,布布扣,bubuko.com

Maximal Rectangle

标签:style   blog   color   io   for   ar   问题   div   

原文地址:http://www.cnblogs.com/moderate-fish/p/3927944.html

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