Flood Fill - Tree - Easy - LeetCode
💻 coding

Flood Fill - Tree - Easy - LeetCode

2 min read 343 words
2 min read
ShareWhatsAppPost on X
  • 1Flood fill modifies a 2-D image array by changing connected pixels of the same color to a new color.
  • 2The algorithm uses depth-first search to traverse and color connected pixels in four directions.
  • 3The time and space complexity of the flood fill algorithm is O(n) in the worst case.

AI-generated summary · May not capture all nuances

Key Insight
AskGif

"Flood fill modifies a 2-D image array by changing connected pixels of the same color to a new color."

Flood Fill - Tree - Easy - LeetCode

An image is represented by a 2-D array of integers, each integer representing the pixel value of the image (from 0 to 65535).

Given a coordinate (sr, sc) representing the starting pixel (row and column) of the flood fill, and a pixel value newColor, "flood fill" the image.

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 as the starting pixel), and so on. Replace the color of all of the aforementioned pixels with the newColor.

At the end, return the modified image.

Example 1: 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)), all pixels connected by a path of the same color as the starting pixel 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. Note:

The length of image and image[0] will be in the range [1, 50]. The given starting pixel will satisfy 0 <= sr < image.length and 0 <= sc < image[0].length. The value of each color in image[i][j] and newColor will be an integer in [0, 65535].

public class Solution {
 public int[][] FloodFill(int[][] image, int sr, int sc, int newColor) {
 var res = new int[image.Length][];
 for(int i=0;i<image.Length;i++){
 res[i] = new int[image[0].Length];
 }
 
 for(int i=0;i<image.Length;i++){
 for(int j=0;j<image[0].Length;j++){
 res[i][j]=image[i][j];
 }
 }
 
 var visited = new bool[image.Length,image[0].Length];
 int prevColor = image[sr][sc];
 Helper(image,res,sr,sc,prevColor,newColor,visited);
 return res;
 }
 
 int[] cx = new int[]{0,0,0,-1,1};
 int[] cy = new int[]{0,-1,1,0,0};
 private void Helper(int[][] image, int[][] res, int sr, int sc,int prevColor, int newColor,bool[,] visited){ 
 
 for(int i=0;i<cx.Length;i++){
 int x = sr+cx[i];
 int y = sc+cy[i];
 if(x<0 || x>=image.Length){
 continue;
 }

 if(y<0 || y>=image[0].Length){
 continue;
 }
 
 if(image[x][y]!=prevColor){
 continue;
 }
 
 if(visited[x,y]){
 continue;
 }
 
 visited[x,y]=true;
 if(prevColor==image[x][y]){
 res[x][y]=newColor;
 }
 Helper(image,res,x,y,prevColor,newColor,visited);
 }
 }
}

Time Complexity: O(n)

Space Complexity: O(n) in worst case

Enjoyed this article?

Share it with someone who'd find it useful.

ShareWhatsAppPost on X

sumitc91

Published on 9 October 2020 · 2 min read · 343 words

Part of AskGif Blog · coding

You might also like