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
- 딥러닝
- tacotron
- waveglow
- text-to-speech
- singing voice synthesis
- Vocoder
- 한국어 음성 합성
- 학습
- 한국어 tts
- TTS
- 보코더
- 트레이닝
- 노래합성
- 딥러닝 음성 합성
- deep voice
- 윈도우
- melgan
- 타코트론
- 딥러닝 보코더
- korean tts
- you only look once
- DCTTS
- 음성 합성
- YOLO
Archives
- Today
- Total
chldkato
백준 1717 집합의 표현 (파이썬) 본문
https://www.acmicpc.net/problem/1717
1. 집합 n+1개를 만들고 자기자신을 부모로 설정한다
2. z가 0이면 앞의 숫자를 부모로 하는 disjoint-set 실행
3. z가 1이면 각자의 부모를 찾아 일치하면 YES 아니면 NO 출력
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
def find_parent(x):
if parent[x] == x:
return x
return find_parent(parent[x])
n, m = map(int, input().split())
parent = {}
for i in range(n+1):
parent[i] = i
for _ in range(m):
z, x, y = map(int, input().split())
if not z:
union(x, y)
if z:
if find_parent(x) == find_parent(y):
print('YES')
else:
print('NO')
'백준' 카테고리의 다른 글
백준 4195 친구 네트워크 (파이썬) (0) | 2020.02.28 |
---|---|
백준 1976 여행 가자 (파이썬) (0) | 2020.02.28 |
백준 5052 전화번호 목록 (파이썬) (2) | 2020.02.27 |
백준 2161 카드1 (파이썬) (0) | 2020.02.27 |
백준 5397 키로거 (파이썬) (0) | 2020.02.27 |
Comments