-
Notifications
You must be signed in to change notification settings - Fork 144
/
Copy pathAllzeroes.cpp
130 lines (98 loc) · 1.81 KB
/
Allzeroes.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
/*
Name: Mehul Chaturvedi
IIT-Guwahati
*/
/*
Given a n*m matrix which contains only 0s and 1s, find out the size of maximum square sub-matrix with all 0s. You need to return the size of square with all 0s.
Input format :
Line 1 : n and m (space separated positive integers)
Next n lines : m elements of each row (separated by space).
Output Format:
Line 1 : Size of maximum square sub-matrix
Sample Input :
3 3
1 1 0
1 1 1
1 1 1
Sample Output :
1
*/
#include <bits/stdc++.h>
using namespace std;
int lef(int** arr, int m, int n){
int ans = 0;
for (int i = n-1; i >= 0; --i)
{
if (arr[m][i] != 0)
{
return ans;
}
if (arr[m][i] == 0)
{
ans++;
}
}
return ans;
}
int up(int** arr, int m, int n){
int ans = 0;
for (int i = m-1; i >= 0; --i)
{
if (arr[i][n] != 0)
{
return ans;
}
if (arr[i][n] == 0)
{
ans++;
}
}
return ans;
}
int findMaxSquareWithAllZeros(int** arr, int m, int n){
vector<vector<int>> dp(m, (vector<int>(n, 0)));
for (int i = 0; i < n; ++i)
{
if (arr[0][i] == 0)
{
dp[0][i] = 1;
}else{
dp[0][i] = 0;
}
}
for (int j = 0; j < m; ++j)
{
dp[j][0] = (arr[j][0] == 0);
}
for (int i = 1; i < m; ++i)
{
for (int j = 1; j < n; ++j)
{
if (arr[i][j] == 0)
{
int dig = dp[i-1][j-1];
int upper = up(arr, i, j);
int left = lef(arr, i, j);
int z = min(dig, min(upper, left));
dp[i][j] = z+1;
}else{
dp[i][j] = 0;
}
}
}
int max = 0;
for (int i = 0; i < m; ++i)
{
for (int j = 0; j < n; ++j)
{
max = std::max(max, dp[i][j]);
}
}
return max;
}
int main( int argc , char ** argv )
{
ios_base::sync_with_stdio(false) ;
cin.tie(NULL) ;
return 0 ;
}