forked from sureshmangs/Code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Day-17-Surrounded Regions.cpp
70 lines (50 loc) · 1.77 KB
/
Day-17-Surrounded Regions.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
Given a 2D board containing 'X' and 'O' (the letter O), capture all regions surrounded by 'X'.
A region is captured by flipping all 'O's into 'X's in that surrounded region.
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
Explanation:
Surrounded regions shouldn’t be on the border, which means that any 'O' on the border of the board are not flipped to 'X'. Any 'O' that is not on the border and it is not connected to an 'O' on the border will be flipped to 'X'. Two cells are connected if they are adjacent cells connected horizontally or vertically.
class Solution {
public:
void dfs(vector<vector<char> >& board, int x, int y){
if(x>=0 && x< board.size() && y>=0 && y< board[0].size() && board[x][y]=='O'){
board[x][y]='P';
dfs(board,x-1,y);
dfs(board,x+1,y);
dfs(board,x,y-1);
dfs(board,x,y+1);
} else return;
}
void solve(vector<vector<char>>& board) {
int rows=board.size();
if(rows==0) return;
int cols=board[0].size();
if(cols==0) return;
for(int i=0; i<cols;i++){
if(board[0][i]=='O') // first row
dfs(board, 0, i);
if(board[rows-1][i]=='O') // last row
dfs(board, rows-1, i);
}
for(int i=0; i<rows;i++){
if(board[i][0]=='O') // first col
dfs(board, i, 0);
if(board[i][cols-1]=='O') // last col
dfs(board, i, cols-1);
}
for(int i=0;i<rows;i++){
for(int j=0;j<cols;j++){
if(board[i][j]=='O') board[i][j]='X';
if(board[i][j]=='P') board[i][j]='O';
}
}
}
};