728x90
반응형
기본적인 BFS 문제이다.
from collections import deque
def bfs(y, x):
q = deque()
q.append((y, x))
graph[y][x] = '1'
while q:
y, x = q.popleft()
for dy, dx in d:
Y, X = y+dy, x+dx
if (0 <= Y < R) and (0 <= X < C) and graph[Y][X] == '#':
q.append((Y, X))
graph[Y][X] = '1'
R, C = map(int, input().split())
graph = [list(input()) for _ in range(R)]
d = [(-1, 0), (1, 0), (0, -1), (0, 1)]
cnt = 0
for i in range(R):
for j in range(C):
if graph[i][j] == '#':
bfs(i, j)
cnt += 1
print(cnt)
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 17198번 Bucket Brigade(python) (0) | 2021.03.14 |
---|---|
백준 알고리즘 11123번 양 한마리... 양 두마리...(python) (0) | 2021.03.14 |
백준 알고리즘 17806번 아기 상어 2(python) (0) | 2021.03.12 |
백준 알고리즘 1303번 전쟁 - 전투(python) (1) | 2021.03.12 |
백준 알고리즘 1402번 아무래도이문제는A번난이도인것같다(python) (0) | 2021.03.12 |