MYQ12 - The Great Escape

no tags 

A map consists of N checkpoints (numbered from 1 to N) connected by M one way roads. A thief is at checkpoint S. He wants to move to checkpoint D. The police, guessing that the thief will move through the route that takes him the least time to reach D from S, have called for security alerts to be placed in all the roads of all such routes. The thief wants to reach D without passing through any of those security alerted roads in the least possible time. If there are multiple such routes, he wants to travel so as to cross a minimum number of checkpoints. Find the minimum time required by the thief to reach D from S, the minimum number of checkpoints in such a route and the number of such routes available. Since the number of such routes may be huge, print the number of such routes modulo 1000000007.

Input

The first line of the input consists of a single integer t representing the number of test cases(1<=t<=300)
The first line of each test case consists of two integers N, M where N is the number of checkpoints and M is the number of roads. (1<=N <= 500 and 1<=M <= 10^4)
The next M lines consist of three integers x, y, t where x and y represent that the road can be used to travel to checkpoint y from checkpoint x in time t (t <= 100) (1<=x, y<=N)

The last line contains S and D (source and Destination).

Output

For each test Case, output a single line containing 3 integers x, y, z. Where x is the least amount of time needed to travel from S to D without using any of the security alerted roads, y is the minimum number of checkpoints in such a route and z is the number of such routes modulo 1000000007. If there is no such path print -1.

Example

Input:
1
3 3
1 3 2
1 2 2
3 2 4
1 2

Output:
6 3 1

hide comments
[Rampage] Blue.Mary: 2012-03-06 15:24:44

I think the range of M is not 10000. I've got Accepted when I assume M is less than 30000.


Added by:jack(chakradarraju)
Date:2012-02-16
Time limit:0.100s-1s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: ASM64
Resource:Bytecode 2012