[백준 1414] 불우이웃돕기
1. 문제 설명
2. 문제 분석
MST를 통해 최소 연결 비용을 구하고, 그래프를 이루는 총 비용에서 뺀다.
3. 나의 풀이
import sys
import heapq
import string
n = int(sys.stdin.readline().rstrip())
letter_code = {letter:idx for idx, letter in enumerate(string.ascii_letters, start=1)}
parents = [i for i in range(n)]
pq = []
base = 0
for i in range(n):
line = sys.stdin.readline().rstrip()
for j in range(n):
if line[j] != '0':
base += letter_code.get(line[j])
heapq.heappush(pq, [letter_code.get(line[j]), i, j])
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
edge_num = 0
while pq:
cur_cost, node1, node2 = heapq.heappop(pq)
if union(node1, node2):
total += cur_cost
edge_num += 1
if edge_num == n-1: break
if edge_num == n-1: print(base - total)
else: print(-1)
Author And Source
이 문제에 관하여([백준 1414] 불우이웃돕기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://velog.io/@j_aion/백준-1414-불우이웃돕기
저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
MST를 통해 최소 연결 비용을 구하고, 그래프를 이루는 총 비용에서 뺀다.
3. 나의 풀이
import sys
import heapq
import string
n = int(sys.stdin.readline().rstrip())
letter_code = {letter:idx for idx, letter in enumerate(string.ascii_letters, start=1)}
parents = [i for i in range(n)]
pq = []
base = 0
for i in range(n):
line = sys.stdin.readline().rstrip()
for j in range(n):
if line[j] != '0':
base += letter_code.get(line[j])
heapq.heappush(pq, [letter_code.get(line[j]), i, j])
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
edge_num = 0
while pq:
cur_cost, node1, node2 = heapq.heappop(pq)
if union(node1, node2):
total += cur_cost
edge_num += 1
if edge_num == n-1: break
if edge_num == n-1: print(base - total)
else: print(-1)
Author And Source
이 문제에 관하여([백준 1414] 불우이웃돕기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://velog.io/@j_aion/백준-1414-불우이웃돕기
저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
import sys
import heapq
import string
n = int(sys.stdin.readline().rstrip())
letter_code = {letter:idx for idx, letter in enumerate(string.ascii_letters, start=1)}
parents = [i for i in range(n)]
pq = []
base = 0
for i in range(n):
line = sys.stdin.readline().rstrip()
for j in range(n):
if line[j] != '0':
base += letter_code.get(line[j])
heapq.heappush(pq, [letter_code.get(line[j]), i, j])
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
edge_num = 0
while pq:
cur_cost, node1, node2 = heapq.heappop(pq)
if union(node1, node2):
total += cur_cost
edge_num += 1
if edge_num == n-1: break
if edge_num == n-1: print(base - total)
else: print(-1)
Author And Source
이 문제에 관하여([백준 1414] 불우이웃돕기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@j_aion/백준-1414-불우이웃돕기저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)