#Lutece0679. An A-Level Attack

An A-Level Attack

Migrated from Lutece 679 An A-Level Attack

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

Magic world does exist. Magic world has wars. Magic world has heroes in wars. Magic world has a hero named zplinti1.

Today zplinti1 gets a new mission. He needs to reach the enemy’s base, which is located somewhere in the Nekoneko City. He has to be as quickly as possible for a military attack.

Now zplinti1 has arrived outside Nekoneko, but he still has to find a way to the enemy base. On the map of the Nekoneko, there are n places, and some of them are connected by undirected roads. Zplinti1 decides to choose a starting position, and move along those roads to reach the enemy base.

Unfortunately, just after zplinti1 calculates all the roads’ lengths, a bad news comes. The enemy has set a special magic at one of the places in the city, which will send anyone stepping on instantly to another place. But no magic is perfect, this magic can only be effective for KK times. Zplinti1 wonders the shortest time to finish his mission, or declares it as impossible.

The enemy might set magic at their own place, just at the door of the base. Zplinti1 considers his mission completed only when he is able to pass through that door.

Input

The first line of input contains a number TT(T30T\leq 30), indicating the number of test cases.

For each case, there are two numbers nn and mm which is the number of places and roads in Nekoneko(2n100000,0m2000002\leq n\leq 100000, 0\leq m \leq 200000). Then mm lines follow, each with three integers uu, vv, and ww. indicating there is a road between place uu and place vv, which takes zplinti1 ww minutes to go(0u,v<n,0<w1000000\leq u,v< n,0< w \leq 100000).

After that, five numbers are given, they are ss,ee,p1p_1,p2p_2 and KK(0s,e,p1,p2<n0\leq s,e,p_1,p_2 < n,se,p1p2,0<K100000s\neq e,p_1\neq p_2,0< K\leq 100000). Zplinti1 will first step into place ss in the city, and the enemy’s base is at place ee. The enemy set magic at place p1p_1, which will send someone instantly to place p2p_2. The magic will be effective to send a person KK times.

Output

For each case, output Case #i: first. (ii is the number of the test case, from 11 to TT). Then output a number which is the shortest time for zplinti1 to reach his goal. If it is impossible, output -1.

Samples

4
4 4
0 1 10
1 2 10
2 3 10
0 3 20
0 3 2 1 10
4 3
0 1 10
1 2 10
2 3 10
0 3 2 1 10
4 2
0 1 10
2 3 20
0 3 1 2 10
4 0
0 3 1 2 10
Case #1: 20
Case #2: 130
Case #3: 30
Case #4: -1

Resources

11th UESTC Programming Contest Preliminary