반응형
bfs로 풀 수 있는 문제로, 기존 bfs가 보통 2차원 MAP을 기준으로 하는것을 1차원으로 축소한 문제
기존 bfs의 탐색방향이 북,동,남,서 였다면 이 문제는 U,D 로 풀이
문제
https://www.acmicpc.net/problem/5014
풀이
import sys
input = sys.stdin.readline
import collections
F, S, G, U, D = map(int,input().split())
def bfs():
q = collections.deque()
q.append((S, 0))
visited = [0 for _ in range(F)]
visited[S-1] = 1
while q:
cur_stair, cnt = q.popleft()
if cur_stair == G:
print(cnt)
return
for move in [U,-D]:
next_stair = cur_stair + move
if 1<= next_stair<=F and visited[next_stair-1] == 0:
visited[next_stair-1] = 1
q.append((next_stair, cnt+1))
print('use the stairs')
반응형
'알고리즘 > 백준 문제풀이' 카테고리의 다른 글
[boj] 백준 10026 적록색약 python 풀이 (0) | 2023.04.19 |
---|---|
[boj] 백준 25418 정수 a를 k로 만들기 python 풀이 (0) | 2023.04.16 |
[boj] 백준 1012 유기농 배추 python 풀이 (0) | 2023.04.16 |
[boj] 백준 15988 1, 2, 3 더하기3 python 풀이 (0) | 2023.04.12 |
[boj] 백준 2065 나룻배 python 풀이 (0) | 2023.04.12 |