LeetCode 0221. Maximal Square Solution in Java, C++, Python & More | Explanation + Code

CoderIndeed
0
0221. Maximal Square

Description

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'.

Solutions

Solution 1: Dynamic Programming

We define dp[i + 1][j + 1] as the maximum square side length with the lower right corner at index (i, j). The answer is the maximum value among all dp[i + 1][j + 1].

The state transition equation is:

$$ dp[i + 1][j + 1] = \begin{cases} 0 & \textit{if } matrix[i][j] = '0' \ \min(dp[i][j], dp[i][j + 1], dp[i + 1][j]) + 1 & \textit{if } matrix[i][j] = '1' \end{cases} $$

The time complexity is O(m× n), and the space complexity is O(m× n). Where m and n are the number of rows and columns of the matrix, respectively.

PythonJavaC++GoC#
class Solution: def maximalSquare(self, matrix: List[List[str]]) -> int: m, n = len(matrix), len(matrix[0]) dp = [[0] * (n + 1) for _ in range(m + 1)] mx = 0 for i in range(m): for j in range(n): if matrix[i][j] == '1': dp[i + 1][j + 1] = min(dp[i][j + 1], dp[i + 1][j], dp[i][j]) + 1 mx = max(mx, dp[i + 1][j + 1]) return mx * mx(code-box)

Post a Comment

0Comments

Post a Comment (0)

#buttons=(Accept !) #days=(20)

Our website uses cookies to enhance your experience. Check Now
Accept !