-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy path1139-largest-1-bordered-square.js
40 lines (36 loc) · 1.09 KB
/
1139-largest-1-bordered-square.js
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
/**
* 1139. Largest 1-Bordered Square
* https://leetcode.com/problems/largest-1-bordered-square/
* Difficulty: Medium
*
* Given a 2D grid of 0s and 1s, return the number of elements in the largest square subgrid
* that has all 1s on its border, or 0 if such a subgrid doesn't exist in the grid.
*/
/**
* @param {number[][]} grid
* @return {number}
*/
var largest1BorderedSquare = function(grid) {
const rows = grid.length;
const cols = grid[0].length;
const left = Array(rows).fill().map(() => Array(cols).fill(0));
const top = Array(rows).fill().map(() => Array(cols).fill(0));
let maxSide = 0;
for (let i = 0; i < rows; i++) {
for (let j = 0; j < cols; j++) {
if (grid[i][j]) {
left[i][j] = j > 0 ? left[i][j - 1] + 1 : 1;
top[i][j] = i > 0 ? top[i - 1][j] + 1 : 1;
let side = Math.min(left[i][j], top[i][j]);
while (side > maxSide) {
if (left[i - side + 1][j] >= side && top[i][j - side + 1] >= side) {
maxSide = side;
break;
}
side--;
}
}
}
}
return maxSide * maxSide;
};