Legal path

Accepts: 9
Submissions: 171
Time Limit: 6000/3000 MS (Java/Others)
Memory Limit: 65536/65536 K (Java/Others)
Problem Description

Given a directed graph ,every edge has a weight. A legal route is defined as the list of edge, for every edge's weight should at least K greater than last edge's weight,if the last one exist. the length of a legal route is the total weight of the edge on it. We should find the legal path from node 11 to node nn of minimum length.

Input

There is a number TT shows there are T test cases below. (T10T \leq 10) For each test case , the first line contains three integers n,m,Kn , m , K, n,mn , m means the number of nodes and the number of edges on the graph. In following there are mm lines. Each line has three integer x,y,zx , y , z. indicate that there is an edge frome xx to yy weighted zz.

2n100,0002 \leq n \leq 100,000 0m200,0000 \leq m \leq 200,000 1K,z1,000,000,0001 \leq K,z \leq 1,000,000,000 1x,yn1 \leq x,y \leq n

Output

For each case ,if there is no legal path from 11 to nn, output -1 ,otherwise output the answer.

Sample Input
3
3 2 1
1 2 1
2 3 2
3 2 1
1 2 2
2 3 1
4 6 2
1 2 1
1 2 2
2 3 3
1 3 5
2 4 2
3 4 7
Sample Output
3
-1
11