无码av一区二区三区无码,在线观看老湿视频福利,日韩经典三级片,成 人色 网 站 欧美大片在线观看

歡迎光臨散文網(wǎng) 會(huì)員登陸 & 注冊(cè)

leetcode 733. Flood Fill

2022-02-26 11:15 作者:您是打尖兒還是住店呢  | 我要投稿

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.

?

Example 1:

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

?

Constraints:

  • m == image.length

  • n == image[i].length

  • 1 <= m, n <= 50

  • 0 <= image[i][j], newColor < 216

  • 0 <= sr <?m

  • 0 <= sc <?n


慢沒關(guān)系,至少?gòu)?fù)制粘貼并且學(xué)習(xí)了的代碼能跑了,

Runtime:?5 ms, faster than?5.56%?of?Java?online submissions for?Flood Fill.

Memory Usage:?48 MB, less than?24.98%?of?Java?online submissions for?Flood Fill.


leetcode 733. Flood Fill的評(píng)論 (共 條)

分享到微博請(qǐng)遵守國(guó)家法律
阆中市| 平塘县| 剑河县| 文安县| 蓝田县| 隆子县| 互助| 甘德县| 大厂| 汶川县| 原平市| 社会| 平塘县| 乌拉特中旗| 新巴尔虎右旗| 泰兴市| 山阴县| 阜新| 汨罗市| 崇仁县| 库伦旗| 洛浦县| 新宁县| 于田县| 磴口县| 盈江县| 嘉义县| 濮阳市| 城市| 茶陵县| 寻甸| 明溪县| 合水县| 宁化县| 南城县| 长武县| 太仆寺旗| 新龙县| 伊通| 酒泉市| 汾阳市|