Flood Fill

2022-04-20 13:11:00 浏览数 (1)

733. Flood Fill

An image is represented by an m x n integer grid image where imagei represents the pixel value of the image.

<!--more-->

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

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.

代码语言:Swift复制
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:

代码语言:Swift复制
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 == oldValue 时,赋值为newValue 即可

代码如下:

代码语言:Swift复制
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
    }
}

或者

代码语言:Swift复制
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)
    }
}

0 人点赞