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
- TTS
- 타코트론
- 보코더
- melgan
- 윈도우
- tacotron
- korean tts
- 한국어 음성 합성
- 한국어 tts
- you only look once
- 트레이닝
- 음성 합성
- 노래합성
- 딥러닝 음성 합성
- singing voice synthesis
- 딥러닝 보코더
- YOLO
- DCTTS
- waveglow
- 학습
- deep voice
- 딥러닝
- text-to-speech
- Vocoder
Archives
- Today
- Total
chldkato
백준 2644 촌수계산 (파이썬) 본문
https://www.acmicpc.net/problem/2644
1. 입력에 맞게 친척 관계를 양방향으로 연결한다
2. bfs로 이동하면서 촌수를 계산한다
from collections import deque
def bfs(x, y):
q.append(x)
c[x] = 0
while q:
nx = q.popleft()
for i in a[nx]:
if c[i] == -1:
q.append(i)
c[i] = c[nx] + 1
n = int(input())
start, end = map(int, input().split())
m = int(input())
a = [[] for _ in range(n)]
c = [-1 for _ in range(n)]
q = deque()
for i in range(m):
x, y = map(int, input().split())
x -= 1; y -= 1
a[x].append(y)
a[y].append(x)
bfs(start-1, end-1)
print(c[end-1])
'백준' 카테고리의 다른 글
백준 1389 케빈 베이컨의 6단계 법칙 (파이썬) (0) | 2020.02.16 |
---|---|
백준 2206 벽 부수고 이동하기 (파이썬) (2) | 2020.02.16 |
백준 13460 구슬 탈출 2 (파이썬) (3) | 2020.02.16 |
백준 10026 적록색약 (파이썬) (2) | 2020.02.16 |
백준 1697 숨바꼭질 (파이썬) (0) | 2020.02.16 |
Comments