733. Flood Fill

An image is represented by an m x n integer grid image where image[i][j] represents the pixel value of the image.

You are also given three integers sr, sc, and newColor. You should perform a flood fill on the image starting from the pixel image[sr][sc].

To perform a flood fill, consider the starting pixel, plus any pixels connected 4-directionally to the starting pixel of the same color as the starting pixel, plus any pixels connected 4-directionally to those pixels (also with the same color), and so on. Replace the color of all of the aforementioned pixels with newColor.

Return the modified image after performing the flood fill.

1
2
3
4
5
6

Input: image = [[1,1,1],[1,1,0],[1,0,1]], sr = 1, sc = 1, newColor = 2
Output: [[2,2,2],[2,2,0],[2,0,1]]
Explanation: From the center of the image with position (sr, sc) = (1, 1) (i.e., the red pixel), all pixels connected by a path of the same color as the starting pixel (i.e., the blue pixels) are colored with the new color.
Note the bottom corner is not colored 2, because it is not 4-directionally connected to the starting pixel.

Example 2:

1
2
Input: image = [[0,0,0],[0,0,0]], sr = 0, sc = 0, newColor = 2
Output: [[2,2,2],[2,2,2]]

解法

难点在于理解题目,参考维基百科的Flood fill,理解题目之后,解法就出来了

判断 sr、sc 有效的情况下,且数组[sr][sc] == oldValue 时,赋值为newValue 即可

代码如下:

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

class Solution {
func floodFill(_ image: [[Int]], _ sr: Int, _ sc: Int, _ newColor: Int) -> [[Int]] {
if image[sr][sc] == newColor {
return image
}
let oldColor = image[sr][sc]
var newImage = image
return floodFillAlgorithem(&newImage, sr, sc, newColor, oldColor)
}

func floodFillAlgorithem(_ image: inout [[Int]], _ sr: Int, _ sc: Int, _ newColor: Int, _ oldColor: Int) -> [[Int]] {
image[sr][sc] = newColor
if (sr > 0) && (image[sr-1][sc] == oldColor) {
floodFillAlgorithem(&image, sr-1, sc, newColor, oldColor)
}

if (sc > 0) && (image[sr][sc-1] == oldColor) {
floodFillAlgorithem(&image, sr, sc-1, newColor, oldColor)
}

if (sr < image.count - 1) && (image[sr+1][sc] == oldColor) {
floodFillAlgorithem(&image, sr+1, sc, newColor, oldColor)
}

if (sc < image[sr].count - 1) && (image[sr][sc+1] == oldColor) {
floodFillAlgorithem(&image, sr, sc+1, newColor, oldColor)
}

return image
}
}

或者

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

class Solution {
func floodFill(_ image: [[Int]], _ sr: Int, _ sc: Int, _ newColor: Int) -> [[Int]] {
if image[sr][sc] == newColor {
return image
}
let oldColor = image[sr][sc]
var newImage = image
floodFillAlgorithem(&newImage, sr, sc, newColor, oldColor)
return newImage
}

func floodFillAlgorithem(_ image: inout [[Int]], _ sr: Int, _ sc: Int, _ newColor: Int, _ oldColor: Int) {

if sr < 0 ||
sc < 0 ||
sr >= image.count ||
sc >= image[sr].count ||
image[sr][sc] != oldColor {
return
}
image[sr][sc] = newColor
floodFillAlgorithem(&image, sr-1, sc, newColor, oldColor)
floodFillAlgorithem(&image, sr, sc-1, newColor, oldColor)
floodFillAlgorithem(&image, sr+1, sc, newColor, oldColor)
floodFillAlgorithem(&image, sr, sc+1, newColor, oldColor)
}
}