일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- dynaminprogramming
- 2909
- 16.04
- MongoDB
- baekjun
- HTML
- raspberrypi
- springboot3.x
- nav-tab
- 라즈비안
- bootstrap
- NAV
- Algorythm
- 알고리즘
- dp
- 2579
- 백준
- Crawling
- algotythm
- ubuntu
- CSS
- 라즈베리파이
- node.js
- 파이썬
- 라즈베리파이3b+
- 크롤링
- Python
- 라즈베리파이3
- 트리
- 13237
Archives
- Today
- Total
노트
[백준] 1197번 최소 스패닝 트리 python 본문
import sys
import heapq
input = sys.stdin.readline
V, E = map(int, input().split())
visited = [False]*(V+1)
Elist = [[] for _ in range(V+1)]
heap = [[0, 1]]
for _ in range(E):
s, e, w = map(int, input().split())
Elist[s].append([w, e])
Elist[e].append([w, s])
answer = 0
cnt = 0
while heap:
if cnt == V:
break
w, s = heapq.heappop(heap)
if not visited[s]:
visited[s] = True
answer += w
cnt += 1
for i in Elist[s]:
heapq.heappush(heap, i)
print(answer)
'알고리즘' 카테고리의 다른 글
[백준] 1991번 트리 순회 python (0) | 2023.09.12 |
---|---|
[백준] 15903번 카드 합체 놀이 python (0) | 2023.09.03 |
[백준] 2775번 부녀회장이 될테야 python (0) | 2023.08.13 |
[백준] 5567번 결혼식 python (0) | 2023.07.30 |
[백준] 2002번 추월 python (0) | 2023.07.23 |
Comments