728x90
반응형
기본적인 BFS 문제이다.
from collections import deque
def bfs(y, x):
q = deque()
q.append((y, x))
graph[y][x] = 0
while q:
y, x = q.popleft()
for dy, dx in d:
Y, X = y+dy, x+dx
if (0 <= Y < N) and (0 <= X < N) and graph[Y][X] == -1:
q.append((Y, X))
graph[Y][X] = graph[y][x]+1
N, M = map(int, input().split())
graph = [[-1]*N for _ in range(N)]
sy, sx = map(int, input().split())
e_li = [list(map(int, input().split())) for _ in range(M)]
d = [(-2, -1), (-2, 1), (-1, -2), (-1, 2), (1, -2), (1, 2), (2, -1), (2, 1)]
bfs(sy-1, sx-1)
for y, x in e_li:
print(graph[y-1][x-1], end=' ')
print()
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 15240번 Paint bucket(python) (0) | 2021.03.14 |
---|---|
백준 알고리즘 8061번 Bitmap(python) (0) | 2021.03.14 |
백준 알고리즘 18243번 Small World Network(python) (0) | 2021.03.14 |
백준 알고리즘 18232번 텔레포트 정거장(python) (0) | 2021.03.14 |
백준 알고리즘 4677번 Oil Deposits(python) (0) | 2021.03.14 |