The first line contain a integer $T$ (no morn than 10), the following is $T$ test case, for each test case :
First line contains two positive integer $n$ and $m$ denoting the number of vertices and edges of the graph.
Each of the following $m$ lines contains three positive integers $u_{i}$ , $v_{i}$ , $w_{i}$,denoting the $i_{th}$ edge connects the vertices $u_{i}$ and $v_{i}$ with the weight $w_{i}$.
It is guaranteed the graph is connected.
$2 \leq n \leq 100000$
$1 \leq m \leq 200000$
$1 \leq u_{i}, v_{i} \leq n$
$u_{i} \ne v_{i}$
$0 \leq w_{i} \leq 100000$
It is guaranteed that sum of n less than 400000, m less than 600000.