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