#P1468J. Road Reform

Road Reform

No submission language available for this problem.

Description

There are nn cities and mm bidirectional roads in Berland. The ii-th road connects the cities xix_i and yiy_i, and has the speed limit sis_i. The road network allows everyone to get from any city to any other city.

The Berland Transport Ministry is planning a road reform.

First of all, maintaining all mm roads is too costly, so m(n1)m - (n - 1) roads will be demolished in such a way that the remaining (n1)(n - 1) roads still allow to get to any city from any other city. Formally, the remaining roads should represent an undirected tree.

Secondly, the speed limits on the remaining roads might be changed. The changes will be done sequentially, each change is either increasing the speed limit on some road by 11, or decreasing it by 11. Since changing the speed limit requires a lot of work, the Ministry wants to minimize the number of changes.

The goal of the Ministry is to have a road network of (n1)(n - 1) roads with the maximum speed limit over all roads equal to exactly kk. They assigned you the task of calculating the minimum number of speed limit changes they have to perform so the road network meets their requirements.

For example, suppose the initial map of Berland looks like that, and k=7k = 7:

Then one of the optimal courses of action is to demolish the roads 1144 and 3344, and then decrease the speed limit on the road 2233 by 11, so the resulting road network looks like that:

The first line contains one integer tt (1t10001 \le t \le 1000) — the number of test cases.

The first line of each test case contains three integers nn, mm and kk (2n21052 \le n \le 2 \cdot 10^5; n1mmin(2105,n(n1)2)n - 1 \le m \le \min(2 \cdot 10^5, \frac{n(n-1)}{2}); 1k1091 \le k \le 10^9) — the number of cities, the number of roads and the required maximum speed limit, respectively.

Then mm lines follow. The ii-th line contains three integers xix_i, yiy_i and sis_i (1xi,yin1 \le x_i, y_i \le n; xiyix_i \ne y_i; 1si1091 \le s_i \le 10^9) — the cities connected by the ii-th road and the speed limit on it, respectively. All roads are bidirectional.

The road network in each test case is connected (that is, it is possible to reach any city from any other city by traveling along the road), and each pair of cities is connected by at most one road.

The sum of nn over all test cases does not exceed 21052 \cdot 10^5. Similarly, the sum of mm over all test cases does not exceed 21052 \cdot 10^5.

For each test case, print one integer — the minimum number of changes the Ministry has to perform so that the maximum speed limit among the remaining (n1)(n - 1) roads is exactly kk.

Input

The first line contains one integer tt (1t10001 \le t \le 1000) — the number of test cases.

The first line of each test case contains three integers nn, mm and kk (2n21052 \le n \le 2 \cdot 10^5; n1mmin(2105,n(n1)2)n - 1 \le m \le \min(2 \cdot 10^5, \frac{n(n-1)}{2}); 1k1091 \le k \le 10^9) — the number of cities, the number of roads and the required maximum speed limit, respectively.

Then mm lines follow. The ii-th line contains three integers xix_i, yiy_i and sis_i (1xi,yin1 \le x_i, y_i \le n; xiyix_i \ne y_i; 1si1091 \le s_i \le 10^9) — the cities connected by the ii-th road and the speed limit on it, respectively. All roads are bidirectional.

The road network in each test case is connected (that is, it is possible to reach any city from any other city by traveling along the road), and each pair of cities is connected by at most one road.

The sum of nn over all test cases does not exceed 21052 \cdot 10^5. Similarly, the sum of mm over all test cases does not exceed 21052 \cdot 10^5.

Output

For each test case, print one integer — the minimum number of changes the Ministry has to perform so that the maximum speed limit among the remaining (n1)(n - 1) roads is exactly kk.

Samples

Sample Input 1

4
4 5 7
4 1 3
1 2 5
2 3 8
2 4 1
3 4 4
4 6 5
1 2 1
1 3 1
1 4 2
2 4 1
4 3 1
3 2 1
3 2 10
1 2 8
1 3 10
5 5 15
1 2 17
3 1 15
2 3 10
1 4 14
2 5 8

Sample Output 1

1
3
0
0

Note

The explanation for the example test:

The first test case is described in the problem statement.

In the second test case, the road network initially looks like that:

The Ministry can demolish the roads 1122, 3322 and 3344, and then increase the speed limit on the road 1144 three times.

In the third test case, the road network already meets all the requirements.

In the fourth test case, it is enough to demolish the road 1122 so the resulting road network meets the requirements.