-
Notifications
You must be signed in to change notification settings - Fork 0
/
Maximal Rectangle.cpp
101 lines (99 loc) · 2.21 KB
/
Maximal Rectangle.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
class Solution {
public:
int largestRectangleArea(vector<int>& heights) {
int ans=0;
int n=heights.size();
int a[n];
int b[n];
stack<int>st;
for(int i=0;i<n;i++)
{
while(!st.empty() && heights[st.top()]>=heights[i])
{
st.pop();
}
if(st.empty())
{
a[i]=0;
st.push(i);
}
else
{
a[i]=st.top()+1;
st.push(i);
}
}
while(!st.empty())
st.pop();
for(int i=n-1;i>=0;i--)
{
while(!st.empty() && heights[st.top()]>=heights[i])
{
st.pop();
}
if(st.empty())
{
b[i]=n-1;
st.push(i);
}
else
{
b[i]=st.top()-1;
st.push(i);
}
}
for(int i=0;i<n;i++)
{
int x=heights[i];
ans=max(ans,((b[i]-a[i]+1)*x));
}
return ans;
}
int maximalRectangle(vector<vector<char>>& matrix)
{
int ans=0;
int n=matrix.size();
int x=matrix[0].size();
int mat[n][x];
for(int i=0;i<n;i++)
{
for(int j=0;j<x;j++)
{
if(matrix[i][j]=='0')
mat[i][j]=0;
else
mat[i][j]=1;
}
}
vector<int>v(x,0);
// for(int j=0;j<x;j++)
// v[j]=0;
// for(int j=0;j<x;j++)
// v.push_back(mat[0][j]);
// int cc=0;
// for(int j=0;j<x;j++)
// {
// if(v[j]==1)
// {
// cc++;
// ans=max(ans,cc);
// }
// else
// {
// cc=0;
// }
// }
for(int i=0;i<n;i++)
{
for(int j=0;j<x;j++)
{
if(mat[i][j]==0)
v[j]=0;
else
v[j]++;
}
ans=max(ans,largestRectangleArea(v));
}
return ans;
}
};