https://www.acmicpc.net/problem/17086
코드
from collections import deque
import sys
input = sys.stdin.readline
n, m = map(int, input().split())
map_data = [list(map(int, input().split())) for _ in range(n)]
dir = [(-1, 0), (-1, 1), (0, 1), (1, 1), (1, 0), (1, -1), (0, -1), (-1, -1)]
def bfs(x, y):
visited = [[False]*m for _ in range(n)]
visited[x][y] = True
q = deque([(x, y, 0)])
while q:
now_x, now_y, cnt = q.popleft()
if map_data[now_x][now_y] == 1:
return cnt
for i in range(8):
nx = now_x + dir[i][0]
ny = now_y + dir[i][1]
if 0 <= nx < n and 0 <= ny < m and not visited[nx][ny]:
q.append((nx, ny, cnt+1))
visited[nx][ny] = True
answer = 0
for i in range(n):
for j in range(m):
if map_data[i][j] == 0:
res = bfs(i, j)
answer = max(answer, res)
print(answer)
팔방으로 이동 가능하다는 것 말고는 딱히 특별한 점이 없는 BFS 문제였다.
'문제풀이 > DFS_BFS' 카테고리의 다른 글
[Python/파이썬] 백준 2665번 미로만들기 (0) | 2025.02.10 |
---|---|
[Python/파이썬] 백준 2617번 구슬 찾기 (0) | 2025.01.30 |
[Python/파이썬] 백준 16932번 모양 만들기 (0) | 2025.01.12 |
[Python/파이썬] 백준 1707번 이분 그래프 (0) | 2025.01.06 |
[Javascript/자바스크립트] 백준 2178번 미로 탐색 (0) | 2024.12.22 |