Skip to content

Latest commit

 

History

History

1034

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Given a 2-dimensional grid of integers, each value in the grid represents the color of the grid square at that location.

Two squares belong to the same connected component if and only if they have the same color and are next to each other in any of the 4 directions.

The border of a connected component is all the squares in the connected component that are either 4-directionally adjacent to a square not in the component, or on the boundary of the grid (the first or last row or column).

Given a square at location (r0, c0) in the grid and a color, color the border of the connected component of that square with the given color, and return the final grid.

 

Example 1:

Input: grid = [[1,1],[1,2]], r0 = 0, c0 = 0, color = 3
Output: [[3, 3], [3, 2]]

Example 2:

Input: grid = [[1,2,2],[2,3,2]], r0 = 0, c0 = 1, color = 3
Output: [[1, 3, 3], [2, 3, 3]]

Example 3:

Input: grid = [[1,1,1],[1,1,1],[1,1,1]], r0 = 1, c0 = 1, color = 2
Output: [[2, 2, 2], [2, 1, 2], [2, 2, 2]]

 

Note:

  1. 1 <= grid.length <= 50
  2. 1 <= grid[0].length <= 50
  3. 1 <= grid[i][j] <= 1000
  4. 0 <= r0 < grid.length
  5. 0 <= c0 < grid[0].length
  6. 1 <= color <= 1000

Related Topics:
Depth-first Search

Similar Questions:

Solution 1. DFS

// OJ: https://leetcode.com/problems/coloring-a-border/
// Author: github.com/lzl124631x
// Time: O(MN)
// Space: O(MN)
class Solution {
    const int dirs[4][2] = {{0, 1}, {0, -1}, {-1, 0}, {1, 0}};
    void dfs(vector<vector<int>> &G, int x, int y, int color) {
        if (x < 0 || x >= G.size() || y < 0 || y >= G[0].size() || G[x][y] != color) return;
        bool border = false;
        for (auto &dir : dirs) {
            int a = x + dir[0], b = y + dir[1];
            if (a < 0 || a >= G.size() || b < 0 || b >= G[0].size() || (G[a][b] > 0 && G[a][b] != color)) {
                border = true;
                break;
            }
        }
        G[x][y] = -color - (border ? 1 : 0);
        for (auto &dir : dirs) dfs(G, x + dir[0], y + dir[1], color);
    }
public:
    vector<vector<int>> colorBorder(vector<vector<int>>& G, int r0, int c0, int color) {
        int c = G[r0][c0];
        dfs(G, r0, c0, c);
        for (int i = 0; i < G.size(); ++i) {
            for (int j = 0; j < G[0].size(); ++j) {
                if (G[i][j] < 0) G[i][j] = G[i][j] == -c ? c : color;
            }
        }
        return G;
    }
};