[백준] 토마토 [찾지 못한 부분 + 코드 + 해설]
구현 & BFS & 최단경로 https://www.acmicpc.net/problem/7576 7576번: 토마토 첫 줄에는 상자의 크기를 나타내는 두 정수 M,N이 주어진다. M은 상자의 가로 칸의 수, N은 상자의 세로 칸의 수를 나타낸다. 단, 2 ≤ M,N ≤ 1,000 이다. 둘째 줄부터는 하나의 상자에 저장된 토마토 www.acmicpc.net 코드 import sys from collections import deque input = sys.stdin.readline m, n = map(int, input().split()) box = [list(map(int, input().split())) for _ in range(n)] def bfs(first_queue): dx = [(-1, 0),..
2023. 7. 16.