`

Surrounded Regions

 
阅读更多

Given a 2D board containing 'X' and 'O', capture all regions surrounded by 'X'.

A region is captured by flipping all 'O's into 'X's in that surrounded region .

For example,

X X X X
X O O X
X X O X
X O X X

After running your function, the board should be:

X X X X
X X X X
X X X X
X O X X

 

class Solution {
public:
    void solve(vector<vector<char>> &board) {
        if(board.size() == 0) return;
        int m = board.size(), n = board[0].size();
        for(int  i = 0; i < m; ++i) {
            bfs(i, 0, board);
            bfs(i, n-1, board);
        }
        for(int j = 1; j < n-1; ++j) {
            bfs(0, j, board);
            bfs(m-1, j, board);
        }
        for(int i = 0; i < n; ++i) {
            for(int j = 0; j < n; ++j) {
                if(board[i][j] == 'O') board[i][j] = 'X'; 
                else if(board[i][j] == '+') board[i][j] = 'O';
            }
        }
    }
    
    void bfs(int i, int j, vector<vector<char> > &board) {
        queue<int> q;
        visit(i, j, q, board);
        int n = board[0].size();
        while(!q.empty()) {
            int f = q.front();
            q.pop();
            int r = f / n;
            int l = f % n;
            visit(r-1, l, q, board);
            visit(r+1, l, q, board);
            visit(r, l-1, q, board);
            visit(r, l+1, q, board);
        }
    }
    
    void visit(int i, int j, queue<int> &q, vector<vector<char> > &board) {
        int m = board.size(), n = board[0].size();
        if(i < 0 || i >= m || j < 0 || j >= n || board[i][j] != 'O') return;
        board[i][j] = '+';
        q.push(i * n + j);
    }
};

 

 

欢迎关注微信公众号——计算机视觉:

 

0
1
分享到:
评论

相关推荐

    python-leetcode题解之130-Surrounded-Regions

    Surrounded Regions"是一道中等难度的算法题。该题目要求编写程序,对一个只包含字符'X'和'O'的二维字符数组进行处理,使得被'X'字符完全环绕的'O'字符被替换为'X'。然而,那些与边界直接相连的'O'字符则不应被替换...

    python-leetcode面试题解之第130题被围绕的区域-题解.zip

    在本题解中,我们将深入探讨LeetCode面试中的一道经典题目——第130题“被包围的区域”(Surrounded Regions)。这是一道涉及Python编程语言的算法问题,通常在求职面试中用于测试候选人的逻辑思维和编程能力。在...

    Leetcode部分解答(126题)

    3. **Surrounded Regions.cpp** - 第49题,解冑处理的是矩阵中的被包围的区域。通常需要使用深度优先搜索或广度优先搜索策略,通过连通组件的概念来解决这类问题。 4. **N-Queens.cpp** - 这是经典的第51题“N皇后...

    leetcode:leetcode解题

    leetcode做过的LeetCode的题目记录一下。对一些比较经典的题型进行分类总结。数据结构 数组 字符串 队列 链表 双指针 栈 堆 树 二叉搜索... Surrounded Regions【2020-01-09】114. Flatten Binary Tree to Linked List

    javalruleetcode-WinterDash:LeetCode加强了WinterQuater

    concise](https://leetcode.com/problems/surrounded-regions/discuss/453448/java-concise-bfs) 137这种 deep copy, HashMap通吃不要太爽 Day 3 - Dec 17 12:28 199 Finished. 佛了 做完第一题就不想做了 12:54...

    leetcode添加元素使和等于-leetcode:leetcode

    Surrounded_Regions 由四周‘O’开始向内检索,利用第三个字符对可以变换的‘O’进行暂存 Word_Lader BFS,避免DFS记录以遍历的节点错误,且保证优先找到最短的路径, 按照图的方法判断任意两个节点是否差一个字母,...

    leetcode1-240题中文题解,md格式,java

    7. leetcode-130-Surrounded-Regions.md:第130题,包围的区域,可能涉及二维数组处理和深度优先搜索(DFS)。 8. leetcode-29-Divide-Two-Integers.md:第29题,两数相除,涉及到整数除法和位运算。 9. leetcode-...

    spssw-184.zip

    Given its size and diversity, Asia – a toponym dating back to classical antiquity – is more a cultural concept incorporating diverse regions and peoples than a homogeneous physical entity[6] Asia ...

Global site tag (gtag.js) - Google Analytics