728x90
반응형
너비 우선 탐색(BFS)이란?
너비 우선 탐색 알고리즘 개념에 대한 내용입니다.
문제링크
https://www.acmicpc.net/problem/2178
풀이
from collections import deque
n, m = map(int, input().split())
graph = []
for _ in range(n):
graph.append(list(map(int, input())))
def bfs(x,y):
dx = [-1, 1, 0, 0]
dy = [0, 0, -1, 1]
queue = deque()
queue.append((x, y))
while queue:
x, y = queue.popleft()
for i in range(4):
nx = x + dx[i]
ny = y + dy[i]
if nx<0 or nx>=n or ny<0 or ny>=m:
continue
if graph[nx][ny] == 0:
continue
if graph[nx][ny] == 1:
graph[nx][ny] = graph[x][y] + 1
queue.append((nx, ny))
return graph[n-1][m-1]
print(bfs(0,0))
728x90
반응형
'알고리즘 정복하기! > 백준 문제풀이' 카테고리의 다른 글
백준 15720번 Python / Greedy (0) | 2022.01.30 |
---|---|
백준 11034번 Python / Greedy (0) | 2022.01.30 |
백준 2810번 Python / Greedy (0) | 2022.01.30 |
백준 1052번 Python / Greedy (0) | 2022.01.27 |
백준 2667번 Python / DFS (0) | 2022.01.25 |
댓글