LeetCode 85. Maximal Rectangle

 1 class Solution {
 2 public:
 3     int maximalRectangle(vector<vector<char>>& matrix) {
 4         /** largest rectangle based solution **/
 5         if(matrix.size()<=0 || matrix[0].size()<=0)
 6             return 0;
 7         int m=matrix.size();
 8         int n=matrix[0].size()+1;
 9         int h=0, w=0, result=0;
10         vector<int> height(n, 0);
11         for(int i=0; i<m; i++){
12             stack<int> s;
13             for(int j=0; j<n; j++){
14                 /** update the current row ended height array **/
15                 if(j<n-1){
16                     if(matrix[i][j]==‘1‘)  height[j]+=1;
17                     else height[j]=0;
18                 }
19                 /** use the histogram-max-rectangle-module **/
20                 while(!s.empty() && height[s.top()]>=height[j]){
21                     h=height[s.top()];
22                     s.pop();
23                     w=s.empty() ? j:j-s.top()-1;
24                     if(h*w>result) result=h*w;
25                 }
26                 s.push(j);
27             }
28         }
29         return result;
30     }
31 };
 1 class Solution {
 2 public:
 3     int maximalRectangle(vector<vector<char>>& matrix) {
 4         if(matrix.empty()) return 0;
 5         const int m=matrix.size();
 6         const int n=matrix[0].size();
 7         vector<int> left(n,0), right(n,n), height(n,0);
 8         int result=0;
 9         for(int i=0; i<m; i++){
10             int cur_left=0, cur_right=n;
11             for(int j=0; j<n; j++){
12                 if(matrix[i][j]==‘1‘) height[j]++;
13                 else height[j]=0;
14             }
15             for(int j=0; j<n; j++){
16                 if(matrix[i][j]==‘1‘) left[j]=max(left[j], cur_left);
17                 else  { left[j]=0; cur_left=j+1; }
18             }
19             for(int j=n-1; j>=0; j--){
20                 if(matrix[i][j]==‘1‘) right[j]=min(right[j], cur_right);
21                 else  { right[j]=n; cur_right=j; }
22             }
23             for(int j=0; j<n; j++){
24                 result=max(result, (right[j]-left[j])*height[j]);
25             }
26         }
27         return result;
28     }
29 };

留坑

时间: 2024-11-08 22:57:26

LeetCode 85. Maximal Rectangle的相关文章

[leetcode]85. Maximal Rectangle 最大矩形

Given a 2D binary matrix filled with 0's and 1's, find the largest rectangle containing only 1's and return its area. Example: Input: [ ["1","0","1","0","0"], ["1","0","1",&qu

LeetCode (85): Maximal Rectangle [含84题分析]

链接: https://leetcode.com/problems/maximal-rectangle/ [描述] Given a 2D binary matrix filled with '0's and '1's, find the largest rectangle containing all ones and return its area. [中文描述] 给一个二维数组, 算出里面最大的全1矩形面积,比如: [ ['1','1','1','0'], ['1','1','1','1']

leetCode 85.Maximal Rectangle (最大矩阵) 解题思路和方法

Given a 2D binary matrix filled with 0's and 1's, find the largest rectangle containing all ones and return its area. 思路:此题的意思是给一个为0或1的矩阵,求所有为1组成的最大矩阵的面积. 此题能够巧妙转化为求最大直方图面积的问题. public class Solution { //其思想是将每一列的1逐行相加,遇0为0.遇1相加 //然后转化为求每一行的最大直方图面积的求解

leetcode 85 Maximal Rectangle ----- java

Given a 2D binary matrix filled with 0's and 1's, find the largest rectangle containing only 1's and return its area. For example, given the following matrix: 1 0 1 0 0 1 0 1 1 1 1 1 1 1 1 1 0 0 1 0 Return 6. 求矩阵中由1组成的最大子矩阵面积. 1.首先进行观察,发现如果直接遍历然后求出每一

[LeetCode 85] Maximal Rectangle (华为2015机试)

题目链接:maximal-rectangle import java.util.Arrays; /** * Given a 2D binary matrix filled with 0's and 1's, * find the largest rectangle containing all ones and return its area. * */ public class MaximalRectangle { // 65 / 65 test cases passed. // Status

19.2.23 [LeetCode 85] Maximal Rectangle

Given a 2D binary matrix filled with 0's and 1's, find the largest rectangle containing only 1's and return its area. Example: Input: [ ["1","0","1","0","0"], ["1","0","1",&qu

LeetCode开心刷题三十二天——85. Maximal Rectangle

85. Maximal Rectangle Hard 161653FavoriteShare Given a 2D binary matrix filled with 0's and 1's, find the largest rectangle containing only 1's and return its area. Example: Input: [ ["1","0","1","0","0"],

【leetcode】Maximal Rectangle

Maximal Rectangle Given a 2D binary matrix filled with 0's and 1's, find the largest rectangle containing all ones and return its area. 使用dpHeight[]数组来记录到第i行为止,第j个位置垂直连续包含多少个1(包括matrxi[i][j]).如: 1 0 1 1 0 1 1 0 1 0 0 1 1 1 1 有如下结果: 第1行: dpHeight[] =

【一天一道LeetCode】#85. Maximal Rectangle

一天一道LeetCode 本系列文章已全部上传至我的github,地址:ZeeCoder's Github 欢迎大家关注我的新浪微博,我的新浪微博 欢迎转载,转载请注明出处 (一)题目 Given a 2D binary matrix filled with 0's and 1's, find the largest rectangle containing all ones and return its area. (二)解题 题目大意:给定一个二值矩阵,计算矩阵里面包含1的所有子矩阵的最大面