[LeetCode] 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

用bfs没问题

class Solution {
public:
    int m,n;
    queue<int> q;
    void add(int x,int y,vector<vector<char>> &board){
        if(x >= 0 && x < m && y >= 0 && y < n && board[x][y] == 'O'){
            board[x][y] = 'q';
            q.push(x*n + y);
        }
    }
    void bfs(int x,int y,vector<vector<char>> &board){
        add(x,y,board);
        while(!q.empty()){
            int p = q.front();
            q.pop();
            int px = p / n,py = p % n;
            add(px - 1,py,board);
            add(px + 1,py,board);
            add(px,py - 1,board);
            add(px,py + 1,board);
        }
    }
    void solve(vector<vector<char>> &board) {
        if(board.empty()) return;
        m = board.size();
        n = board[0].size();
        for(int i = 0;i < n;i ++){
            bfs(0,i,board);
            bfs(m - 1,i,board);
        }
        for(int i = 0;i < m;i ++){
            bfs(i,0,board);
            bfs(i,n - 1,board);
        }
        for(int i = 0;i < m;i ++){
            for(int j = 0;j < n;j ++){
                board[i][j] = (board[i][j] == 'q' ? 'O' : 'X');
            }
        }
    }
};


用dfs会超时

class Solution {
public:
    int m,n;
    void dfs(int x,int y,vector<vector<char>> &board){
        if(x >= 0 && x < m && y >= 0 && y < n && board[x][y] == 'O'){
            board[x][y] = 'q';
            dfs(x - 1,y,board);
            dfs(x + 1,y,board);
            dfs(x,y - 1,board);
            dfs(x,y + 1,board);
        }
    }
    void solve(vector<vector<char>> &board) {
        if(board.empty()) return;
        m = board.size();
        n = board[0].size();
        for(int i = 0;i < n;i ++){
            dfs(0,i,board);
            dfs(m - 1,i,board);
        }
        for(int i = 0;i < m;i ++){
            dfs(i,0,board);
            dfs(i,n - 1,board);
        }
        for(int i = 0;i < m;i ++){
            for(int j = 0;j < n;j ++){
                board[i][j] = board[i][j] == 'q' ? 'O' : 'X';
            }
        }
    }
};




  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值