-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy path1034-coloring-a-border.js
67 lines (60 loc) · 1.96 KB
/
1034-coloring-a-border.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
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
/**
* 1034. Coloring A Border
* https://leetcode.com/problems/coloring-a-border/
* Difficulty: Medium
*
* You are given an m x n integer matrix grid, and three integers row, col, and color. Each value
* in the grid represents the color of the grid square at that location.
*
* Two squares are called adjacent if they are next to each other in any of the 4 directions.
*
* Two squares belong to the same connected component if they have the same color and they are
* adjacent.
*
* The border of a connected component is all the squares in the connected component that are
* either adjacent to (at least) a square not in the component, or on the boundary of the grid
* (the first or last row or column).
*
* You should color the border of the connected component that contains the square grid[row][col]
* with color.
*
* Return the final grid.
*/
/**
* @param {number[][]} grid
* @param {number} row
* @param {number} col
* @param {number} color
* @return {number[][]}
*/
var colorBorder = function(grid, row, col, color) {
const rows = grid.length;
const cols = grid[0].length;
const visited = new Set();
const originalColor = grid[row][col];
const borders = new Set();
function findBorders(r, c) {
if (r < 0 || r >= rows || c < 0 || c >= cols
|| visited.has(`${r},${c}`) || grid[r][c] !== originalColor) {
return;
}
visited.add(`${r},${c}`);
if (r === 0 || r === rows - 1 || c === 0 || c === cols - 1
|| (r > 0 && grid[r - 1][c] !== originalColor)
|| (r < rows - 1 && grid[r + 1][c] !== originalColor)
|| (c > 0 && grid[r][c - 1] !== originalColor)
|| (c < cols - 1 && grid[r][c + 1] !== originalColor)) {
borders.add(`${r},${c}`);
}
findBorders(r - 1, c);
findBorders(r + 1, c);
findBorders(r, c - 1);
findBorders(r, c + 1);
}
findBorders(row, col);
borders.forEach(pos => {
const [r, c] = pos.split(',').map(Number);
grid[r][c] = color;
});
return grid;
};