-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path1034.Coloring-A-Border.java
64 lines (54 loc) · 1.83 KB
/
1034.Coloring-A-Border.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
// https://leetcode.com/problems/coloring-a-border/
//
// algorithms
// Medium (38.33%)
// Total Accepted: 1,599
// Total Submissions: 4,172
// beats 100.0% of java submissions
class Solution {
public int[][] colorBorder(int[][] grid, int r0, int c0, int color) {
int row = grid.length, col = grid[0].length;
boolean[][] isVisited = new boolean[row][col];
recursiveColor(grid, isVisited, r0, c0, color, grid[r0][c0]);
return grid;
}
public void recursiveColor(int[][] grid, boolean[][] isVisited, int i, int j, int color, int flag) {
int row = grid.length, col = grid[0].length;
isVisited[i][j] = true;
if (i == 0 || i == row - 1 || j == 0 || j == col - 1) {
grid[i][j] = color;
}
if (i > 0 && !isVisited[i - 1][j]) {
if (grid[i - 1][j] != flag) {
grid[i][j] = color;
}
else {
recursiveColor(grid, isVisited, i - 1, j, color, flag);
}
}
if (i < row - 1 && !isVisited[i + 1][j]) {
if (grid[i + 1][j] != flag) {
grid[i][j] = color;
}
else {
recursiveColor(grid, isVisited, i + 1, j, color, flag);
}
}
if (j > 0 && !isVisited[i][j - 1]) {
if (grid[i][j - 1] != flag) {
grid[i][j] = color;
}
else {
recursiveColor(grid, isVisited, i, j - 1, color, flag);
}
}
if (j < col - 1 && !isVisited[i][j + 1]) {
if (grid[i][j + 1] != flag) {
grid[i][j] = color;
}
else {
recursiveColor(grid, isVisited, i, j + 1, color, flag);
}
}
}
}