#Lutece0222. Passer-by

Passer-by

Migrated from Lutece 222 Passer-by

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

There are n cities ,which are labeled from 00 to N1N-1, and a passer-by wants to go to city N1N-1 from city 00.There may be a directed road between two cities,or there is not any road between them.

However, because of the National Environmental Action,some of the roads have to be closed and nobody is allowed to use it until it is cleaned up.The passer-by wants to achieve at city n1n-1 as soon as possible,so please help him calculate the shortest time he need to reach the destination.

Input

There are several test cases, first line is an integer T(1T10)T(1 \leq T \leq 10), represents there are TT test cases.

The first line of each test are two integers: NN and MM, which respectively represent the number of cities and the number of roads. (N1000,M1000000)(N \leq 1000, M \leq 1000000)

Each of the following m lines includes four integers: U,V,W,TU, V, W, T.Which means that there exists a one-way road from UU to VV and crossing it will cost WW minutes.In addition, the road will not be available until TT minutes when the road is cleaned up. There is at most one road from UU to $V (0 \leq U < N), (0 \leq V < N), (1 \leq W \leq 1000), (0 \leq T \leq 1000)$

Output

If the passer-by could get to the city N1N-1,then print the shortest time;

else if he couldn't ,then print -1.

Samples

2

3 3
0 1 2 0
0 2 8 0
1 2 3 6

3 3
0 1 2 0
0 2 8 0
1 2 3 4
8
7

Note

Huge input, scanf recommend

Resources

第四届北京邮电大学程序设计竞赛网络预赛