일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 11053
- 코테
- Kotlin
- 순열
- 파이썬
- 6603
- 홈화면
- 11054
- 1260
- 11057
- permutation
- 코틀린
- 최소공배수
- 앱
- Combination
- 나머지
- 뒤로가기
- 매일11시
- LCS
- Python
- itertools
- lcm
- expo
- 백준
- 괄호
- 11기
- Android
- 1182
- 안드로이드
- 9095
Archives
- Today
- Total
황소개발자
백준 13549 파이썬 python : 숨바꼭질 3 @@황소처럼 우직하게@@끌끌 본문
반응형
불가능이란 없다
n, k = map(int, input().split())
MAX = -1
dist = [-1 for i in range(100001)]
def bfs(v):
q = [v]
dist[v] = 0
nxt_q = []
while q:
now = q.pop(0)
if now * 2 <= 100000 and dist[now * 2] == -1:
dist[now * 2] = dist[now]
q.append(now * 2)
if now + 1 <= 100000 and dist[now + 1] == -1:
dist[now + 1] = dist[now] + 1
nxt_q.append(now + 1)
if now - 1 >= 0 and dist[now - 1] == -1:
dist[now - 1] = dist[now] + 1
nxt_q.append(now - 1)
if not q:
q = nxt_q
nxt_q = []
bfs(n)
print(dist[k])
반응형
'백준 문제 풀이' 카테고리의 다른 글
백준 2206 파이썬 python : 벽 부수고 이동하기 @@황소처럼 우직하게@@ 준내신기하네 (0) | 2020.03.03 |
---|---|
백준 1261 파이썬 python : 알고스팟 @@황소처럼 우직하게@@ 화이팅! (0) | 2020.03.03 |
백준 14226 파이썬 python : 이모티콘 @@황소처럼 우직하게@@ 이게무슨.. (0) | 2020.03.03 |
백준 1697 파이썬 python : 숨바꼭질 @@황소처럼 우직하게@@ (0) | 2020.03.03 |
백준 7576 파이썬 python : 토마토 @@황소처럼 우직하게@@ 시간초과 해결 (0) | 2020.03.03 |
Comments