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
- waveglow
- Vocoder
- 한국어 tts
- 딥러닝 음성 합성
- melgan
- singing voice synthesis
- 한국어 음성 합성
- TTS
- 딥러닝 보코더
- 윈도우
- 음성 합성
- 학습
- 타코트론
- 트레이닝
- 딥러닝
- DCTTS
- deep voice
- text-to-speech
- tacotron
- YOLO
- you only look once
- korean tts
- 노래합성
- 보코더
Archives
- Today
- Total
chldkato
백준 1325 효율적인 해킹 (파이썬) 본문
https://www.acmicpc.net/problem/1325
1. 양방향이 아니라 단방향으로 관계를 만들어줍니다
2. bfs로 경로를 따라 이동하면서 거리를 저장하고 최대값에 해당하는 인덱스를 오름차순으로 출력
from collections import deque
import sys
input = sys.stdin.readline
def bfs(x):
q = deque()
c = [0 for _ in range(n)]
q.append(x)
c[x] = 1
cnt = 1
while q:
x = q.popleft()
for nx in a[x]:
if c[nx] == 0:
cnt += 1
c[nx] = 1
q.append(nx)
return cnt
n, m = map(int, input().split())
a = [[] for _ in range(n)]
for _ in range(m):
x, y = map(int, input().split())
a[y-1].append(x-1)
ans = [0 for _ in range(n)]
for i in range(n):
ans[i] = bfs(i)
for i in range(n):
if ans[i] == max(ans):
print(i+1, end=' ')
'백준' 카테고리의 다른 글
백준 5427 불 (파이썬) (0) | 2020.02.17 |
---|---|
백준 1600 말이 되고픈 원숭이 (파이썬) (0) | 2020.02.17 |
백준 1613 역사 (파이썬) (0) | 2020.02.17 |
백준 4485 녹색 옷 입은 애가 젤다지? (파이썬) (0) | 2020.02.17 |
백준 1504 특정한 최단 경로 (파이썬) (0) | 2020.02.17 |
Comments