-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy path130-yongjoonseo.py
39 lines (34 loc) · 1.23 KB
/
130-yongjoonseo.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
from collections import deque
class Solution:
def BFS(self, board, sy, sx, visited, n, m):
q = deque([(sy, sx)])
visited[sy][sx] = 1
candis = [(sy, sx)]
dy = [0, 1, 0, -1]
dx = [1, 0, -1, 0]
out = False
while q:
y, x = q.popleft()
for i in range(4):
ny, nx = y + dy[i], x + dx[i]
if 0 <= ny < n and 0 <= nx < m:
if not visited[ny][nx] and board[ny][nx] == 'O':
visited[ny][nx] = 1
candis.append((ny, nx))
q.append((ny, nx))
else:
if not out: out = True
if out: return
for cy, cx in candis:
board[cy][cx] = 'X'
def solve(self, board: List[List[str]]) -> None:
"""
Do not return anything, modify board in-place instead.
"""
if not board: return
n, m = len(board), len(board[0])
visited = [[0] * m for i in range(n)]
for i in range(n):
for j in range(m):
if board[i][j] == 'O' and not visited[i][j]:
self.BFS(board, i, j, visited, n, m)