zoukankan      html  css  js  c++  java
  • [LeetCode 85] Maximal Rectangle

    Given a rows x cols binary matrix filled with 0's and 1's, find the largest rectangle containing only 1's and return its area.

     

    Example 1:

    Input: matrix = [["1","0","1","0","0"],["1","0","1","1","1"],["1","1","1","1","1"],["1","0","0","1","0"]]
    Output: 6
    Explanation: The maximal rectangle is shown in the above picture.
    

    Example 2:

    Input: matrix = []
    Output: 0
    

    Example 3:

    Input: matrix = [["0"]]
    Output: 0
    

    Example 4:

    Input: matrix = [["1"]]
    Output: 1
    

    Example 5:

    Input: matrix = [["0","0"]]
    Output: 0
    

     

    Constraints:

    • rows == matrix.length
    • cols == matrix.length
    • 0 <= row, cols <= 200
    • matrix[i][j] is '0' or '1'.
     
    This problem's optimal solution builds on its related problem: Largest Rectangle in Histogram. If we treat each row as the new base line of a histogram, we can get the largest rectangle in O(Col) time. We need to do this O(Row) time by keeping a prefix sum array h[], where h[i] is the height of the ith column in the current histogram. 
     
    The runtime is O(Row * Col) and is BCR.
     
    class Solution {
        public int maximalRectangle(char[][] matrix) {
            if(matrix.length == 0) {
                return 0;
            }
            int m = matrix.length, n = matrix[0].length, ans = 0;
            int[] h = new int[n];
            for(int i = 0; i < m; i++) {
                for(int j = 0; j < n; j++) {
                    h[j] = (matrix[i][j] == '0' ? 0 : h[j] + 1);
                }
                ans = Math.max(ans, largestRectangeleHistogram(h));
            }
            return ans;
        }
        private int largestRectangeleHistogram(int[] h) {
            ArrayDeque<Integer> dq = new ArrayDeque<>();
            dq.addLast(-1);
            int best = 0;
            for(int i = 0; i < h.length; i++) {
                while(dq.peekLast() >= 0 && h[i] < h[dq.peekLast()]) {
                    int j = dq.pollLast();
                    best = Math.max(best, h[j] * (i - 1 - dq.peekLast()));
                }
                dq.addLast(i);
            }
            while(dq.peekLast() >= 0) {
                int j = dq.pollLast(); 
                best = Math.max(best, h[j] * (h.length - 1 - dq.peekLast()));
            }
            return best;
        }
    }
  • 相关阅读:
    系统重启
    Linux驱动程序开发
    Linux 下实现控制屏幕显示信息和光标的状态
    Linux C 语言 获取系统时间信息
    linux 获取系统屏幕分辨率
    Linux下得到显示屏参数的方法
    Linux如何关闭防火墙和查看防火墙的具体情况
    查看Linux下网卡状态或 是否连接(转)
    ArcGIS Engine中正确释放打开资源
    在ArcEngine下实现图层属性过滤的两种方法
  • 原文地址:https://www.cnblogs.com/lz87/p/7395928.html
Copyright © 2011-2022 走看看