#Lutece0054. Shortest road

Shortest road

Migrated from Lutece 54 Shortest road

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

Before long, xiaoze received a call from the sponsor company All Options, while he was busy on the problems for the upcoming UESTC programming contest. He was invited to discuss the patronage. Sure, xiaoze was exciting and they made a time immediately.

But, here comes the problem. You know, Chengdu is a metropolis, you should choose a smart route in order to save time. As there're many routes, xiaoze is puzzled. You are xiaoze's best friend. Could you help him compute the least time spent on the road? What's more, you should tell xiaoze the number of shortest routes, that's because xiaoze wants to choose another route when he be back if applicable.

Now, suppose xiaoze is at SS, and the company All Options is at TT. There're NN crosses and MM roads in Chengdu. Now, please solve this problem for xiaoze as soon as possible.

Input

The beginning is an integer TT, which is the number of test case.

First line of each test case contains two numbers NN(2N10002 \leq N \leq 1000) and MM(0M1060 \leq M \leq 10^6). Then followed by MM lines, each line contains three numbers AA BB (1A,BN1 \leq A,B \leq N) and CC(1C1061 \leq C \leq 10^6), indicating you need CC minutes to go from AA to BB. The last line contains two numbers SS and TT, indicating the start and end places. Each node is numbered from 11.

It is sure that there’s at most one undirect road between any two places.

Output

First line, the least time you need from SS to TT measured in minute. The second line is the number of shortest routes modmod 10000071000007. Output two lines each contain a 0 if it’s impossible to travel to destination.

Output an empty line after each test cases.

Samples

3

4 2
1 2 10
3 4 5
1 4

4 4
1 2 1
2 4 2
1 3 2
3 4 1
1 4

9 12
1 2 1000000
1 3 1000000
2 4 1000000
2 5 1000000
3 5 1000000
3 6 1000000
4 7 1000000
5 7 1000000
5 8 1000000
6 8 1000000
7 9 1000000
8 9 1000000
1 9
0
0

3
2

4000000
6

Resources

电子科技大学第七届ACM程序设计大赛 初赛