백준 7576번 토마토 파이썬 - bfs

문제

 

7576번: 토마토

첫 줄에는 상자의 크기를 나타내는 두 정수 M,N이 주어진다. M은 상자의 가로 칸의 수, N은 상자의 세로 칸의 수를 나타낸다. 단, 2 ≤ M,N ≤ 1,000 이다. 둘째 줄부터는 하나의 상자에 저장된 토마토

www.acmicpc.net

 

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 해주기