-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path0085-maximal-rectangle.cpp
58 lines (51 loc) · 1.27 KB
/
0085-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
class Solution {
public:
int maximalRectangle(vector<vector<char>>& matrix) {
int n=matrix.size();
int m=matrix[0].size();
vector<vector<int>> dp(n,vector<int> (m,0));
for(int i=0;i<n;i++)
{
int ct=-1;
for(int j=m-1;j>=0;j--)
{
if(matrix[i][j]!='0')
{
if(ct==-1)
ct=j;
dp[i][j]=ct;
}
else
{
ct=-1;
}
}
}
for(auto &it:dp)
{
for(auto &it1:it)
cout<<it1<<" ";
cout<<endl;
}
cout<<endl;
int ans=0;
for(int i=0;i<n;i++)
{
for(int j=0;j<m;j++)
{
int b=1e9;
for(int k=i;k>=0;k--)
{
if(matrix[k][j]=='1')
{
b=min(b,dp[k][j]-j+1);
ans=max(ans,(i-k+1)*b);
}
else
break;
}
}
}
return ans;
}
};