LeetCode - 733. Flood Fill(Array, DFS, BFS, Matrix)

YAMAMAMO·2022년 11월 19일
0

LeetCode

목록 보기
84/100

문제

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 color. 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 color.
Return the modified image after performing the flood fill.

https://leetcode.com/problems/flood-fill/description/

Example 1:

Input: image = [[1,1,1],[1,1,0],[1,0,1]], sr = 1, sc = 1, color = 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:

Input: image = [[0,0,0],[0,0,0]], sr = 0, sc = 0, color = 0
Output: [[0,0,0],[0,0,0]]
Explanation: The starting pixel is already colored 0, so no changes are made to the image.

풀이

class Solution {
    public int[][] floodFill(int[][] image, int m, int n, int color) {
        return floodFill(image, m, n, color, image[m][n]);    
    }

    public int[][] floodFill(int[][] image, int m, int n, int color, int origin){
        if( m == -1) return image;
        if( n == -1) return image;
        if(image.length == m ) return image;
        if(image[m].length == n) return image;
        if(image[m][n]!=origin) return image;
        if(image[m][n] == color) return image;
        else image[m][n] = color;

        floodFill(image, m-1, n, color, origin);
        floodFill(image, m+1, n, color, origin);
        floodFill(image, m, n-1, color, origin);
        floodFill(image, m, n+1, color, origin);

        return image;
    }
}
profile
안드로이드 개발자

0개의 댓글