[백준 14621] 나만 안되는 연애

Junyoung Park·2022년 3월 13일
0

코딩테스트

목록 보기
252/631
post-thumbnail

1. 문제 설명

나만 안되는 연애

2. 문제 분석

우선순위 큐에 넣는 간선을 조건화해서 넣어야 풀리는 문제다.

3. 나의 풀이

import sys
import heapq

n, m = map(int, sys.stdin.readline().rstrip().split())
uni = ['X'] + list(sys.stdin.readline().rstrip().split())
parents = [i for i in range(n+1)]
pq = []
for _ in range(m):
    u, v, d = map(int, sys.stdin.readline().rstrip().split())
    if uni[u] == uni[v]: continue
    heapq.heappush(pq, [d, u, v])

def find(node):
    if parents[node] == node: return node
    else:
        parents[node] = find(parents[node])
        return parents[node]

def union(node1, node2):
    root1, root2 = find(node1), find(node2)
    if root1 == root2: return False
    else:
        parents[root2] = root1
        return True

total = 0
cnt = 0

while pq:
    c, node1, node2 = heapq.heappop(pq)
    if union(node1, node2):
        total += c
        cnt += 1
        if cnt == n-1: break

if cnt == n-1: print(total)
else: print(-1)
profile
JUST DO IT

0개의 댓글