import java.util.HashSet;
import java.util.Scanner;
import java.util.Set;
import sk.upjs.paz.graph.Edge;
import sk.upjs.paz.graph.Graph;
import sk.upjs.paz.graph.Vertex;
public class PrimovAlgoritmus {
public static Set<Edge> minimalnaKostra(Graph g) {
Set<Vertex> nevybavene = new HashSet<Vertex>();
nevybavene.addAll(g.getVertices());
Vertex r = null;
for (Vertex v : nevybavene) {
v.setValue("hodnota", Double.POSITIVE_INFINITY);
r = v;
}
r.setValue("hodnota", 0);
while (!nevybavene.isEmpty()) {
for (Vertex v : r.getNeighbours()) {
double h = g.getEdge(r, v).getWeight();
if (nevybavene.contains(v) && v.getDoubleValue("hodnota") > h) {
v.setValue("hodnota", h);
v.setValue("predchodca", r);
}
}
nevybavene.remove(r);
double minHodnota = Double.POSITIVE_INFINITY;
for (Vertex v : nevybavene) {
if (minHodnota > v.getDoubleValue("hodnota")) {
r = v;
minHodnota = v.getDoubleValue("hodnota");
}
}
if (minHodnota == Double.POSITIVE_INFINITY && !nevybavene.isEmpty())
return new HashSet<Edge>();
}
//pozbierame hrany
Set<Edge> hrany = new HashSet<Edge>();
for (Vertex v : g.getVertices()) {
Vertex pred = (Vertex) v.getValue("predchodca");
if (pred != null) {
hrany.add(g.getEdge(v, pred));
}
}
return hrany;
}
public static Graph nacitajGraf() {
Scanner s = new Scanner(System.in);
String[] pom = s.nextLine().split(" ");
int pocetVrcholov = Integer.parseInt(pom[0]);
int pocetHran = Integer.parseInt(pom[0]);
//pridanieVrcholov
Graph g = new Graph();
for (int i = 1; i <= pocetVrcholov; i++) {
g.addVertex(i + "");
}
//nacitanie hran
for (int i = 0; i < pocetHran; i++) {
String[] hrana = s.nextLine().split(" ");
g.addEdge(g.getVertex(hrana[0]), g.getVertex(hrana[1]));
g.getEdge(g.getVertex(hrana[0]), g.getVertex(hrana[1]))
.setWeight(Double.parseDouble(hrana[2]));
}
return g;
}
public static void main(String[] args) {
Scanner s = new Scanner(System.in);
int pocetVstupov = s.nextInt();
for (int i = 0; i < pocetVstupov; i++) {
Graph g = nacitajGraf();
Set<Edge> kostra = minimalnaKostra(g);
System.out.println(kostra);
}
// Graph g = new Graph();
// g.loadFromFile("graf.txt");
// g.setDirected(false);
//
// Set<Edge> kostra = minimalnaKostra(g);
// System.out.println(kostra);
}
}