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
- 딥러닝 보코더
- 한국어 음성 합성
- 타코트론
- Vocoder
- DCTTS
- 트레이닝
- tacotron
- 음성 합성
- korean tts
- 학습
- 딥러닝
- 윈도우
- waveglow
- YOLO
- 보코더
- TTS
- deep voice
- 딥러닝 음성 합성
- melgan
- singing voice synthesis
- you only look once
- text-to-speech
- 한국어 tts
- 노래합성
Archives
- Today
- Total
chldkato
백준 1976 여행 가자 (파이썬) 본문
https://www.acmicpc.net/problem/1976
플로이드-와샬로 모든 경로를 구해놓고 여행 경로가 가능한지 출력
import sys
INF = sys.maxsize
input = sys.stdin.readline
n = int(input())
m = int(input())
a = [list(map(int, input().split())) for _ in range(n)]
for k in range(n):
for i in range(n):
for j in range(n):
if i == j:
a[i][j] = 1
if a[i][k] and a[k][j]:
a[i][j] = 1
d = list(map(int, input().split()))
for i in range(len(d)-1):
if a[d[i]-1][d[i+1]-1] != 1:
print("NO")
sys.exit()
print("YES")
'백준' 카테고리의 다른 글
백준 2156 포도주 시식 (파이썬) (0) | 2020.03.03 |
---|---|
백준 4195 친구 네트워크 (파이썬) (0) | 2020.02.28 |
백준 1717 집합의 표현 (파이썬) (0) | 2020.02.27 |
백준 5052 전화번호 목록 (파이썬) (2) | 2020.02.27 |
백준 2161 카드1 (파이썬) (0) | 2020.02.27 |
Comments