Maximum Spanning Tree
Practice
3.3 (58 votes)
Algorithms
Approved
Easy
Graphs
Open
Problem
51% Success 7146 Attempts 30 Points 1s Time Limit 256MB Memory 1024 KB Max Code

Russian Translation Available

You are given a weighted graph with N vertices and M edges. Find the total weight of its maximum spanning tree.

Input

The first line contains one integer T denoting the number of test cases. Each test case starts with a line containing 2 space-separated integer: N and M. Each of the following M lines contain description of one edge: three different space-separated integers: a, b and c. a and b are different and from 1 to N each and denote numbers of vertices that are connected by this edge. c denotes weight of this edge.

Output

For each test case output one integer - the total weight of its maximum spanning tree.

Constraints

  • 1 <= T <= 20
  • 1 <= N <= 5000
  • 1 <= M <= 100 000
  • 1 <= c <= 10 000

Please login to use the editor

You need to be logged in to access the code editor

Loading...

Please wait while we load the editor

Loading...
Results
Custom Input
Run your code to see the output
Submissions
Please login to view your submissions
Similar Problems
Points:30
9 votes
Tags:
Depth First SearchEasyGraphsImplementationRecursion
Points:30
174 votes
Tags:
ApprovedDepth First SearchEasyGraphsOpen
Points:30
7 votes
Tags:
AlgorithmsBinary SearchDepth First SearchEasySearching