문제
from collections import deque
import sys
m, n = map(int, sys.stdin.readline().split())
t = [[0] * m for i in range(n)]
queue = deque()
dr = [-1, 1, 0, 0]
dc = [0, 0, -1, 1]
for i in range(n):
line = list(map(int, sys.stdin.readline().split()))
for j in range(m):
t[i][j] = int(line[j])
if t[i][j] == 1:
queue.append((i, j))
cnt = 0
while queue:
x, y = queue.popleft()
for i in range(4):
nx = x + dr[i]
ny = y + dc[i]
if 0 <= nx < n and 0 <= ny < m and t[nx][ny] == 0:
t[nx][ny] = t[x][y] + 1
queue.append((nx, ny))
max = -1
check = 0
for i in range(n):
for j in range(m):
if t[i][j] > max:
max = t[i][j]
if t[i][j] == 0:
max = 0
check = 1
break
if check == 1:
break
print(max - 1)
bfs 문제
모두 익을 때까지의 최소 날짜니까 하나씩 옮겨갈 때마다 +1 해서 저장해준다
max를 -1로 놓고
0이 있으면 -1로 출력되도록 하고 break 해주기
'공부하자! > 알고리즘' 카테고리의 다른 글
프로그래머스 | 거리두기 확인하기 (0) | 2021.09.10 |
---|---|
백준 4963 섬의 개수 파이썬 - bfs (0) | 2021.09.09 |
백준 1012번 유기농 배추 파이썬 - bfs (0) | 2021.09.09 |
백준 2667번 단지번호붙이기 파이썬 (0) | 2021.09.07 |
프로그래머스 | 짝지어 제거하기 파이썬 (0) | 2021.08.22 |