国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

130. Surrounded Regions

2019-11-08 03:21:06
字體:
來源:轉載
供稿:網友

別人的代碼,簡單題吧,dfs或者bfs都行,就是比那上面的o(包括和這些o相連的o)之外其他的0都變成x 2刷自己打一次吧

class Solution {public: void helper(vector<vector<char>>& board, int i, int j) { queue<pair<int, int>> q; pair<int, int> p; p.first = i; p.second = j; board[i][j] = 'M'; q.push(p); int dir[4][2] = {{0,1}, {0,-1}, {1,0}, {-1,0}}; while(!q.empty()) { pair<int, int> g = q.front(); q.pop(); for(int i = 0; i < 4; i++) { int tmpX = dir[i][0] + g.first; int tmpY = dir[i][1] + g.second; if(tmpX < 0 || tmpY < 0 || tmpX >= board.size() || tmpY >= board[0].size()) continue; if(board[tmpX][tmpY] == 'O') { q.push(pair<int,int>(tmpX, tmpY)); board[tmpX][tmpY] = 'M'; } } } } void solve(vector<vector<char>>& board) { int m = board.size(); if(m == 0) return; int n = board[0].size(); for(int i = 0; i < m; i++) { if(board[i][0] == 'O') { helper(board, i, 0); } if(board[i][n-1] == 'O') { helper(board, i, n-1); } } for(int j = 0; j < n; j++) { if(board[0][j] == 'O') { helper(board, 0, j); } if(board[m-1][j] == 'O') { helper(board, m-1, j); } } for(int i = 0; i < m; i++) { for(int j = 0; j < n; j++) { if(board[i][j] == 'M') { board[i][j] = 'O'; } else if(board[i][j] == 'O') { board[i][j] = 'X'; } } } }};
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 伊通| 洪雅县| 巴楚县| 通辽市| 迭部县| 敦煌市| 民勤县| 安远县| 峨山| 资阳市| 安远县| 万载县| 贵南县| 和田市| 象州县| 额济纳旗| 新疆| 关岭| 定兴县| 扎兰屯市| 武冈市| 广德县| 云浮市| 新余市| 星子县| 四川省| 新安县| 金坛市| 翼城县| 凤冈县| 自贡市| 宁强县| 青浦区| 四会市| 靖江市| 安西县| 长汀县| 青浦区| 柯坪县| 莫力| 衡东县|