zoukankan      html  css  js  c++  java
  • leetcode-733-Flood Fill

    题目描述:

    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].

     

    要完成的函数:

    vector<vector<int>> floodFill(vector<vector<int>>& image, int sr, int sc, int newColor) 

     

    说明:

    1、这道题给定一个二维vector表示一张图片,一个sr表示起始点的行坐标,sc表示起始点的纵坐标,要求从起始点开始,找到四个方向上跟起始点相同颜色的像素点,把起始点以及周边找到的点都给改变颜色,变成给定的newcolor。之后再从周边找到的点往外扩散,相同方法找到新的点,继续改变颜色……

    2、这是一道DFS或者BFS的题目,笔者对于BFS比较熟悉,也就写成了BFS。

    代码如下:(附详解)

        vector<vector<int>> floodFill(vector<vector<int>>& image, int sr, int sc, int newColor) 
        {
            int oldcolor=image[sr][sc];
            if(oldcolor==newColor)return image;//如果旧的颜色和新的颜色一样,那么根本不需要改变,返回原本的image就好了
            queue<int>q1;//定义一个队列
            q1.push(sr);//塞入行坐标
            q1.push(sc);//塞入纵坐标
            while(!q1.empty())//当队列非空的情况下,迭代处理
            {
                sr=q1.front();//取出行坐标
                q1.pop();
                sc=q1.front();//取出列在坐标
                q1.pop();
                image[sr][sc]=newColor;//改变当前点的颜色,同时避免之后的重复寻找
                if(sr-1>=0&&image[sr-1][sc]==oldcolor)//判断上方点是不是相同颜色
                {
                    q1.push(sr-1);
                    q1.push(sc);
                }
                if(sr+1<image.size()&&image[sr+1][sc]==oldcolor)//判断下方点是不是相同颜色
                {
                    q1.push(sr+1);
                    q1.push(sc);
                }
                if(sc-1>=0&&image[sr][sc-1]==oldcolor)//判断左边的点是不是相同颜色
                {
                    q1.push(sr);
                    q1.push(sc-1);
                }
                if(sc+1<image[0].size()&&image[sr][sc+1]==oldcolor)//判断右边的点是不是相同颜色
                {
                    q1.push(sr);
                    q1.push(sc+1);
                }
            }
            return image;
        }
    

    上述代码实测35ms,beats 68.76% of cpp submissions。

  • 相关阅读:
    Nginx在linux环境下(centos7)的安装、负载均衡设置
    ocr识别开源软件tesseract试用记录
    Nginx在windows环境下的安装、负载均衡设置
    一个测试程序迭代的故事05
    一个测试程序迭代的故事04
    一个测试程序迭代的故事03
    一个测试程序迭代的故事02
    一个测试程序迭代的故事01
    Delphi5和Delphi7属性编辑器内存泄漏问题的解决
    使用Calibre自带工具批量转换电子书格式
  • 原文地址:https://www.cnblogs.com/chenjx85/p/9190608.html
Copyright © 2011-2022 走看看