forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_221.java
46 lines (41 loc) · 1.4 KB
/
_221.java
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
package com.fishercoder.solutions;
/**
* 221. Maximal Square
*
* Given a 2D binary matrix filled with 0's and 1's, find the largest square containing only 1's and return its area.
For example, given the following matrix:
1 0 1 0 0
1 0 1 1 1
1 1 1 1 1
1 0 0 1 0
Return 4.
*/
public class _221 {
/**The idea is pretty straightforward: use a 2d dp table to store the intermediate results*/
public static int maximalSquare(char[][] matrix) {
if(matrix == null || matrix.length == 0) return 0;
int m = matrix.length, n = matrix[0].length;
int max = Integer.MIN_VALUE;
int[][] dp = new int[m][n];
for(int i = 0; i < m; i++){
for(int j = 0; j < n; j++){
if(i == 0 || j == 0) dp[i][j] = (matrix[i][j] == '1') ? 1 : 0;
else {
if(matrix[i][j] == '0') dp[i][j] = 0;
else dp[i][j] = Math.min(dp[i-1][j], Math.min(dp[i][j-1], dp[i-1][j-1]))+1;
}
max = (max < dp[i][j]) ? dp[i][j] : max;
}
}
return max*max;
}
public static void main(String...strings){
char[][] matrix = new char[][]{
{'1', '0', '1', '0', '0'},
{'1', '0', '1', '1', '1'},
{'1', '1', '1', '1', '1'},
{'1', '0', '0', '1', '0'},
};
System.out.println(maximalSquare(matrix));
}
}