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 | 31 |
Tags
- 음성 합성
- 딥러닝 음성 합성
- TTS
- Vocoder
- text-to-speech
- 학습
- 딥러닝 보코더
- 딥러닝
- 한국어 tts
- deep voice
- singing voice synthesis
- korean tts
- tacotron
- 한국어 음성 합성
- 트레이닝
- YOLO
- 노래합성
- you only look once
- 타코트론
- 보코더
- waveglow
- DCTTS
- melgan
- 윈도우
Archives
- Today
- Total
chldkato
백준 5014 스타트링크 (파이썬) 본문
https://www.acmicpc.net/problem/5014
현재 위치에서 주어진 조건에 맞춰 갈 수 있는 모든 경로를 이동하면서 G층에 도착하면 그동안 누른 버튼 수를 출력
import sys
from collections import deque
input = sys.stdin.readline
def bfs():
q.append(s-1)
c[s-1] = 1
while q:
x = q.popleft()
if x == g-1:
print(c[x]-1)
return
if x+u < f and not c[x+u]:
q.append(x+u)
c[x+u] = c[x] + 1
if x-d >= 0 and not c[x-d]:
q.append(x-d)
c[x-d] = c[x] + 1
print("use the stairs")
f, s, g, u, d = map(int, input().split())
c = [0 for _ in range(f)]
q = deque()
bfs()
'백준' 카테고리의 다른 글
백준 2146 다리 만들기 (파이썬) (0) | 2020.02.17 |
---|---|
백준 2573 빙산 (파이썬) (0) | 2020.02.17 |
백준 1707 이분 그래프 (파이썬) (0) | 2020.02.16 |
백준 3055 탈출 (파이썬) (0) | 2020.02.16 |
백준 2589 보물섬 (파이썬) (4) | 2020.02.16 |
Comments