728x90
반응형
DFS & BFS 문제이다. BFS로는 쉽게 통과했는데 DFS에서 계속 메모리 초과가 나온다. 한 시간 동안 해봤는데
해결하지 못했고, 내린 결론은 BFS로 풀 수 있는 문제는 BFS로 풀어야겠다는 점이다ㅜ DFS는 BFS 보다 느리다.
BFS 풀이
from collections import deque
def bfs(y, x):
graph[y][x] = 0
queue = deque()
queue.append((y, x))
d = [(-1, 0), (1, 0), (0, -1), (0, 1)]
cnt = 1
while queue:
y, x = queue.popleft()
for dy, dx in d:
Y, X = y+dy, x+dx
if (0 <= Y < n) and (0 <= X < m) and graph[Y][X] == 1:
queue.append((Y, X))
graph[Y][X] = 0
cnt += 1
return cnt
n, m = map(int, input().split())
graph = [list(map(int, input().split())) for _ in range(n)]
res = []
for i in range(n):
for j in range(m):
if graph[i][j] == 1:
res.append(bfs(i, j))
print(len(res))
print(max(res) if res else 0)
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 2468번 안전 영역(python) (0) | 2021.03.10 |
---|---|
백준 알고리즘 1743번 음식물 피하기(python) (0) | 2021.03.10 |
백준 알고리즘 18870번 좌표 압축(python) (0) | 2021.03.10 |
백준 알고리즘 1697번 숨바꼭질(python) (0) | 2021.03.10 |
백준 알고리즘 2667번 단지번호붙이기(python) (0) | 2021.03.10 |