사용자 도구

사이트 도구


ps:problems:boj:1717

집합의 표현

ps
링크acmicpc.net/…
출처BOJ
문제 번호1717
문제명집합의 표현
레벨골드 4
분류

DisjointSet

시간복잡도O(m*α(n))
인풋사이즈n<=1,000,000, m<=100,000
사용한 언어Python
제출기록38548KB / 324ms
최고기록232ms
해결날짜2021/10/14
태그

29단계

풀이

  • Disjoint Set의 기본 연산을 구현하는 튜토리얼적인 문제. 그냥 Disjoint Set을 구현해서 Union과 Find 연산을 사용하면 된다
  • 시간복잡도는 O(m*α(n))

코드

"""Solution code for "BOJ 1717. 집합의 표현".

- Problem link: https://www.acmicpc.net/problem/1717
- Solution link: http://www.teferi.net/ps/problems/boj/1717

Tags: [DisjointSet]
"""

import sys
from teflib import disjointset


def main():
    # pylint: disable=unused-variable
    n, m = [int(x) for x in sys.stdin.readline().split()]
    dsu = disjointset.DisjointSet(n + 1)
    for _ in range(m):
        oper, a, b = [int(x) for x in sys.stdin.readline().split()]
        if oper == 0:
            dsu.union(a, b)
        else:
            print('YES' if dsu.find(a) == dsu.find(b) else 'NO')


if __name__ == '__main__':
    main()

토론

댓글을 입력하세요:
V C Z I L
 
ps/problems/boj/1717.txt · 마지막으로 수정됨: 2021/10/17 15:11 저자 teferi