-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCountSquareSubmatricesAllOnes_21May.java
More file actions
43 lines (38 loc) · 1.05 KB
/
CountSquareSubmatricesAllOnes_21May.java
File metadata and controls
43 lines (38 loc) · 1.05 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
class Solution {
public int countSquares(int[][] matrix) {
int count = 0;
for(int i=0;i<matrix.length;i++) {
if(matrix[i][0] == 1) {
count = count+matrix[i][0];
}
}
for(int i=1;i<matrix[0].length;i++) {
if(matrix[0][i] == 1) {
count = count+matrix[0][i];
}
}
for(int i=1;i<matrix.length;i++) {
for(int j=1;j<matrix[0].length;j++) {
if(matrix[i][j] ==1) {
matrix[i][j] = min(matrix[i-1][j-1],matrix[i-1][j],matrix[i][j-1])+1;
count = count + matrix[i][j];
}
}
}
return count;
}
public int min(int a, int b, int c) {
if(a<b) {
if(a<c) {
return a;
}
return c;
}
else {
if(b<c) {
return b;
}
return c;
}
}
}