-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMaximalSquare.py
More file actions
executable file
·70 lines (49 loc) · 1.52 KB
/
Copy pathMaximalSquare.py
File metadata and controls
executable file
·70 lines (49 loc) · 1.52 KB
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
"""
Given an m x n binary matrix filled with 0's and 1's, find the largest square 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: 4
Example 2:
Input: matrix = [["0","1"],["1","0"]]
Output: 1
Example 3:
Input: matrix = [["0"]]
Output: 0
Constraints:
m == matrix.length
n == matrix[i].length
1 <= m, n <= 300
matrix[i][j] is '0' or '1'.
"""
class Solution:
def maximalSquare(self, matrix: List[List[str]) -> int:
if not matrix:
return 0
m, n = len(matrix), len(matrix[0])
dp = [[0] * (n + 1) for _ in range(m + 1)]
max_side = 0
for i in range(1, m + 1):
for j in range(1, n + 1):
if matrix[i - 1][j - 1] == "1":
dp[i][j] = min(dp[i - 1][j - 1], dp[i][j - 1], dp[i - 1][j]) + 1
max_side = max(max_side, dp[i][j])
return max_side * max_side
# Test code
solution = Solution()
# Test case 1
matrix1 = [
["1","0","1","0","0"],
["1","0","1","1","1"],
["1","1","1","1","1"],
["1","0","0","1","0"]
]
result1 = solution.maximalSquare(matrix1)
print("Test case 1 result:", result1) # Expected output: 4
# Test case 2
matrix2 = [["0","1"],["1","0"]]
result2 = solution.maximalSquare(matrix2)
print("Test case 2 result:", result2) # Expected output: 1
# Test case 3
matrix3 = [["0"]]
result3 = solution.maximalSquare(matrix3)
print("Test case 3 result:", result3) # Expected output: 0