Minimum Spanning Tree

4.9

12 votes
Very-Easy
Problem

Given a weighted undirected graph. Find the sum of weights of edges of a Minimum Spanning Tree.

Input:
Given 2 integers N and M. N represents the number of vertices in the graph. M represents the number of edges between any 2 vertices.
Then M lines follow, each line has 3 space separated integers ai , bi, wi where ai and bi represents an edge from a vertex ai to a vertex bi and wi respresents the weight of that edge.

Output:
Print the summation of edges weights in the MST.

Constraints:
2N10000
1M100000
1ai,biN
1wi1000

Sample Input
4 5
1 2 7
1 4 6
4 2 9
4 3 8
2 3 6
Sample Output
19
Time Limit: 5
Memory Limit: 256
Source Limit:
Editor Image

?