• [LintCode] Maximal Rectangle 最大矩形


    Given a 2D boolean matrix filled with False and True, find the largest rectangle containing all True and return its area.

    Example
    Given a matrix:

    [
    [1, 1, 0, 0, 1],
    [0, 1, 0, 0, 1],
    [0, 0, 1, 1, 1],
    [0, 0, 1, 1, 1],
    [0, 0, 0, 0, 1]
    ]
    return 6.

    LeetCode上的原题,请参见我之前的博客Maximal Rectangle

    解法一:

    class Solution {
    public:
        /**
         * @param matrix a boolean 2D matrix
         * @return an integer
         */
        int maximalRectangle(vector<vector<bool> > &matrix) {
            if (matrix.empty() || matrix[0].empty()) return 0;
            int res = 0, m = matrix.size(), n = matrix[0].size();
            vector<int> h(n + 1, 0);
            for (int i = 0; i < m; ++i) {
                stack<int> s;
                for (int j = 0; j < n + 1; ++j) {
                    if (j < n) {
                        if (matrix[i][j]) ++h[j];
                        else h[j] = 0;
                    }
                    while (!s.empty() && h[s.top()] >= h[j]) {
                        int cur = s.top(); s.pop();
                        res = max(res, h[cur] * (s.empty() ? j : (j - s.top() - 1)));
                    }
                    s.push(j);
                }
            }
            return res;
        }
    };

    解法二:

    class Solution {
    public:
        /**
         * @param matrix a boolean 2D matrix
         * @return an integer
         */
        int maximalRectangle(vector<vector<bool> > &matrix) {
            if (matrix.empty() || matrix[0].empty()) return 0;
            int res = 0, m = matrix.size(), n = matrix[0].size();
            vector<int> h(n, 0), left(n, 0), right(n, n);
            for (int i = 0; i < m; ++i) {
                int cur_left = 0, cur_right = n;
                for (int j = 0; j < n; ++j) {
                    h[j] = matrix[i][j] ? h[j] + 1 : 0;
                }
                for (int j = 0; j < n; ++j) {
                    if (matrix[i][j]) left[j] = max(left[j], cur_left);
                    else {left[j] = 0; cur_left = j + 1;}
                }
                for (int j = n - 1; j >= 0; --j) {
                    if (matrix[i][j]) right[j] = min(right[j], cur_right);
                    else {right[j] = n; cur_right = j;}
                }
                for (int j = 0; j < n; ++j) {
                    res = max(res, (right[j] - left[j]) * h[j]);
                }
            }
            return res;
        }
    };
  • 相关阅读:
    用于Web开发的8 个最好的跨平台编辑器
    javascript之数组操作
    15 个最佳的 jQuery 表格插件
    使用Backbone构建精美应用的7条建议
    linux内核内存分配(一、基本概念)
    redhat的systemd版本list
    Linux内核crash/Oops异常定位分析方法
    systemd bug: bz1437114 core:execute: fix fork() fail handling in exec_spawn()
    Use gdb attach pid and debug it
    Build rpm example:zram
  • 原文地址:https://www.cnblogs.com/grandyang/p/5496687.html
Copyright © 2020-2023  润新知