일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 1260
- 코틀린
- LCS
- 11053
- expo
- 뒤로가기
- Android
- Combination
- 앱
- 매일11시
- 11057
- 안드로이드
- Kotlin
- Python
- 1182
- 11054
- 순열
- 홈화면
- 괄호
- permutation
- 9095
- 최소공배수
- 6603
- 코테
- 11기
- 백준
- itertools
- lcm
- 나머지
- 파이썬
Archives
- Today
- Total
황소개발자
백준 1697 파이썬 python : 숨바꼭질 @@황소처럼 우직하게@@ 본문
반응형
화이팅!
n, k = map(int, input().split())
dist = [-1 for i in range(100001)]
from collections import deque
def bfs(v):
q = deque()
q.append(v)
dist[v] = 0
while q:
now = q.popleft()
if now + 1 <= 100000 and dist[now + 1] == -1:
q.append(now + 1)
dist[now + 1] = dist[now] + 1
if now - 1 >= 0 and dist[now - 1] == -1:
q.append(now - 1)
dist[now - 1] = dist[now] + 1
if now * 2 <= 100000 and dist[now * 2] == -1:
q.append(now * 2)
dist[now * 2] = dist[now] + 1
bfs(n)
print(dist[k])
반응형
'백준 문제 풀이' 카테고리의 다른 글
백준 13549 파이썬 python : 숨바꼭질 3 @@황소처럼 우직하게@@끌끌 (0) | 2020.03.03 |
---|---|
백준 14226 파이썬 python : 이모티콘 @@황소처럼 우직하게@@ 이게무슨.. (0) | 2020.03.03 |
백준 7576 파이썬 python : 토마토 @@황소처럼 우직하게@@ 시간초과 해결 (0) | 2020.03.03 |
백준 2178 파이썬 python : 미로 탐색 @@황소처럼 우직하게@@ (0) | 2020.03.03 |
백준 4963 파이썬 python : 섬의 개수 @@황소처럼 우직하게@@ 짜릿짜릿 (0) | 2020.03.03 |
Comments