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
- korean tts
- 윈도우
- tacotron
- text-to-speech
- singing voice synthesis
- 딥러닝 보코더
- 한국어 tts
- melgan
- YOLO
- waveglow
- TTS
- 딥러닝 음성 합성
- 보코더
- Vocoder
- 한국어 음성 합성
- 음성 합성
- DCTTS
- 노래합성
- 딥러닝
- 타코트론
- 트레이닝
- you only look once
- deep voice
- 학습
Archives
- Today
- Total
chldkato
백준 4195 친구 네트워크 (파이썬) 본문
https://www.acmicpc.net/problem/4195
1. disjoint-set으로 입력의 왼쪽을 부모로 하는 집합을 만들어준다
2. union에서 부모를 설정할 때 네트워크의 크기도 합쳐서 갱신해준다
3. 출력을 위해 해당 입력의 부모를 찾았을 때 저장한 크기를 return한다
import sys
input = sys.stdin.readline
def get_parent(x):
if parent[x] == x:
return x
p = get_parent(parent[x])
parent[x] = p
return p
def union(x, y):
x = get_parent(x)
y = get_parent(y)
if x != y:
parent[y] = x
s[x] += s[y]
def find_parent(x):
if parent[x] == x:
return s[x]
return find_parent(parent[x])
t = int(input())
for _ in range(t):
f = int(input())
parent, s = {}, {}
for _ in range(f):
x, y = input().split()
if x not in parent:
parent[x] = x
s[x] = 1
if y not in parent:
parent[y] = y
s[y] = 1
union(x, y)
print(find_parent(x))
'백준' 카테고리의 다른 글
백준 1520 내리막 길 (파이썬) (2) | 2020.03.03 |
---|---|
백준 2156 포도주 시식 (파이썬) (0) | 2020.03.03 |
백준 1976 여행 가자 (파이썬) (0) | 2020.02.28 |
백준 1717 집합의 표현 (파이썬) (0) | 2020.02.27 |
백준 5052 전화번호 목록 (파이썬) (2) | 2020.02.27 |
Comments