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
- you only look once
- 타코트론
- 학습
- text-to-speech
- TTS
- Vocoder
- 한국어 음성 합성
- 노래합성
- tacotron
- 윈도우
- deep voice
- 딥러닝 보코더
- korean tts
- singing voice synthesis
- 딥러닝
- YOLO
- melgan
- 한국어 tts
- DCTTS
- 트레이닝
- 음성 합성
- waveglow
- 딥러닝 음성 합성
- 보코더
Archives
- Today
- Total
chldkato
백준 1613 역사 (파이썬) 본문
https://www.acmicpc.net/problem/1613
1. 플로이드-와샬로 모든 경로를 구한다
2. 앞에 있는 사건이 먼저 일어난 경우가 있는지 우선 체크해본다
3. 먼저 일어나지 않았다면 다른 케이스를 검증하여 조건에 맞게 값을 출력한다
import sys
input = sys.stdin.readline
n, m = map(int, input().split())
a = [[0]*n for _ in range(n)]
for _ in range(m):
x, y = map(int, input().split())
a[x-1][y-1] = 1
for k in range(n):
for i in range(n):
for j in range(n):
if a[i][k] and a[k][j]:
a[i][j] = 1
s = int(input())
for _ in range(s):
x, y = map(int, input().split())
if a[x-1][y-1] == 1:
print(-1)
elif a[y-1][x-1] == 1:
print(1)
elif a[x-1][y-1] == 0:
print(0)
'백준' 카테고리의 다른 글
백준 1600 말이 되고픈 원숭이 (파이썬) (0) | 2020.02.17 |
---|---|
백준 1325 효율적인 해킹 (파이썬) (0) | 2020.02.17 |
백준 4485 녹색 옷 입은 애가 젤다지? (파이썬) (0) | 2020.02.17 |
백준 1504 특정한 최단 경로 (파이썬) (0) | 2020.02.17 |
백준 1238 파티 (파이썬) (0) | 2020.02.17 |
Comments