Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 음성 합성
- 딥러닝
- text-to-speech
- melgan
- 보코더
- DCTTS
- korean tts
- deep voice
- 윈도우
- waveglow
- YOLO
- 한국어 tts
- 학습
- you only look once
- TTS
- 노래합성
- 딥러닝 음성 합성
- Vocoder
- tacotron
- 한국어 음성 합성
- 트레이닝
- 타코트론
- singing voice synthesis
- 딥러닝 보코더
Archives
- Today
- Total
chldkato
백준 1697 숨바꼭질 (파이썬) 본문
https://www.acmicpc.net/problem/1697
from collections import deque
def bfs():
while q:
x = q.popleft()
if x == k:
print(c[k]-1)
exit()
if x*2 < limit:
if c[x*2] == 0:
q.append(x*2)
c[x*2] = c[x] + 1
if x-1 >= 0:
if c[x-1] == 0:
q.append(x-1)
c[x-1] = c[x] + 1
if x+1 < limit:
if c[x+1] == 0:
q.append(x+1)
c[x+1] = c[x] + 1
limit = 200001
n, k = map(int, input().split())
c = [0 for _ in range(limit)]
c[n] = 1
q = deque()
q.append(n)
bfs()
'백준' 카테고리의 다른 글
백준 11403 경로 찾기 (파이썬) (0) | 2020.02.27 |
---|---|
백준 1012 유기농 배추 (파이썬) (0) | 2020.02.27 |
백준 7576 토마토 (파이썬) (0) | 2020.02.27 |
백준 2667 단지번호붙이기 (파이썬) (0) | 2020.02.27 |
백준 2178 미로 탐색 (파이썬) (0) | 2020.02.27 |
Comments