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
- 한국어 음성 합성
- 딥러닝
- 윈도우
- singing voice synthesis
- deep voice
- DCTTS
- TTS
- text-to-speech
- Vocoder
- 학습
- you only look once
- melgan
- 음성 합성
- 한국어 tts
- waveglow
- 타코트론
- 딥러닝 보코더
- 트레이닝
- YOLO
- korean tts
- tacotron
- 딥러닝 음성 합성
- 보코더
- 노래합성
Archives
- Today
- Total
chldkato
백준 12761 돌다리 (파이썬) 본문
https://www.acmicpc.net/problem/12761
주어진 조건대로 구현하여 bfs를 진행하면 된다
단, 시작을 0부터하면 예제입력2 같은 경우에 오답이 나오기 때문에 1부터 시작해야한다
from collections import deque
import sys
input = sys.stdin.readline
def bfs():
q.append(n)
c[n] = 1
while q:
x = q.popleft()
if x == m:
print(c[x]-1)
for i in range(3):
nx = x + jump[i]
if nx < limit and not c[nx]:
c[nx] = c[x] + 1
q.append(nx)
nx = x - jump[i]
if nx > 0 and not c[nx]:
c[nx] = c[x] + 1
q.append(nx)
nx = x * jump[i]
if nx < limit and not c[nx]:
c[nx] = c[x] + 1
q.append(nx)
a, b, n, m = map(int, input().split())
jump = [1, a, b]
limit = 100001
c = [0 for _ in range(limit)]
q = deque()
bfs()
'백준' 카테고리의 다른 글
백준 9376 탈옥 (파이썬) (0) | 2020.02.22 |
---|---|
백준 3187 양치기 꿍 (파이썬) (2) | 2020.02.22 |
백준 3197 백조의 호수 (파이썬) (0) | 2020.02.21 |
백준 5214 환승 (파이썬) (0) | 2020.02.21 |
백준 4179 불! (파이썬) (0) | 2020.02.21 |
Comments