Agorithm/백준 알고리즘
백준 알고리즘 12761번 돌다리(python)
kimjinho1
2021. 3. 12. 14:47
728x90
반응형
기본적인 BFS 문제이다.
from collections import deque
def bfs(node):
q = deque()
q.append(node)
graph[node] = 0
while q:
node = q.popleft()
for n in [node-1, node+1, node+A, node-A, node+B, node-B, node*A, node*B]:
if (0 <= n <= 100000) and graph[n] == -1:
q.append(n)
graph[n] = graph[node]+1
if n == M:
return ;
A, B, N, M = map(int, input().split())
graph = [-1]*100001
bfs(N)
print(graph[M])
728x90
반응형