-
Notifications
You must be signed in to change notification settings - Fork 0
/
130.被围绕的区域.py
77 lines (73 loc) · 1.89 KB
/
130.被围绕的区域.py
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
71
72
73
74
75
76
#
# @lc app=leetcode.cn id=130 lang=python3
#
# [130] 被围绕的区域
#
# https://leetcode-cn.com/problems/surrounded-regions/description/
#
# algorithms
# Medium (39.10%)
# Likes: 172
# Dislikes: 0
# Total Accepted: 25K
# Total Submissions: 63.3K
# Testcase Example: '[["X","X","X","X"],["X","O","O","X"],["X","X","O","X"],["X","O","X","X"]]'
#
# 给定一个二维的矩阵,包含 'X' 和 'O'(字母 O)。
#
# 找到所有被 'X' 围绕的区域,并将这些区域里所有的 'O' 用 'X' 填充。
#
# 示例:
#
# X X X X
# X O O X
# X X O X
# X O X X
#
#
# 运行你的函数后,矩阵变为:
#
# X X X X
# X X X X
# X X X X
# X O X X
#
#
# 解释:
#
# 被围绕的区间不会存在于边界上,换句话说,任何边界上的 'O' 都不会被填充为 'X'。 任何不在边界上,或不与边界上的 'O' 相连的 'O'
# 最终都会被填充为 'X'。如果两个元素在水平或垂直方向相邻,则称它们是“相连”的。
#
#
# @lc code=start
class Solution:
def solve(self, board: List[List[str]]) -> None:
# DFS
"""
Do not return anything, modify board in-place instead.
"""
if not board or not board[0]:
return
def dfs(i, j):
if i < 0 or i >= row or j < 0 or j >= col or board[i][j] != 'O':
return
board[i][j] = '#'
dfs(i+1, j)
dfs(i-1, j)
dfs(i, j+1)
dfs(i, j-1)
row = len(board)
col = len(board[0])
for i in range(row):
dfs(i, 0)
dfs(i, col-1)
for i in range(col):
dfs(0, i)
dfs(row-1, i)
for i in range(row):
for j in range(col):
if board[i][j] == 'O':
board[i][j] = 'X'
if board[i][j] == '#':
board[i][j] = 'O'
# @lc code=end