Dirty Arkady's Kitchen

题意翻译

给定一张无向图,每条边在时间 $[l_i,r_i)$ 才能通过,通过花费 $1$ 的时间。你不能在原地停留。 你在时刻 $0$ 从 $1$ 号点,求最快何时能到达 $n$ 号点。 无法到达或被迫停留,输出 `-1`。

题目描述

Arkady likes to walk around his kitchen. His labyrinthine kitchen consists of several important places connected with passages. Unfortunately it happens that these passages are flooded with milk so that it's impossible to pass through them. Namely, it's possible to pass through each passage in any direction only during some time interval. The lengths of all passages are equal and Arkady makes through them in one second. For security reasons, Arkady can never stop, also, he can't change direction while going through a passage. In other words, if he starts walking in some passage, he should reach its end and immediately leave the end. Today Arkady needs to quickly reach important place $ n $ from place $ 1 $ . He plans to exit the place $ 1 $ at time moment $ 0 $ and reach the place $ n $ as early as he can. Please find the minimum time he should spend on his way.

输入输出格式

输入格式


The first line contains two integers $ n $ and $ m $ ( $ 1<=n<=5·10^{5} $ , $ 0<=m<=5·10^{5} $ ) — the number of important places and the number of passages, respectively. After that, $ m $ lines follow, each of them describe one passage. Each line contains four integers $ a $ , $ b $ , $ l $ and $ r $ ( $ 1<=a,b<=n $ , $ a≠b $ , $ 0<=l&lt;r<=10^{9} $ ) — the places the passage connects and the time segment during which it's possible to use this passage.

输出格式


Print one integer — minimum time Arkady should spend to reach the destination. If he can't reach the place $ n $ , print -1.

输入输出样例

输入样例 #1

5 6
1 2 0 1
2 5 2 3
2 5 0 1
1 3 0 1
3 4 1 2
4 5 2 3

输出样例 #1

3

输入样例 #2

2 1
1 2 1 100

输出样例 #2

-1

说明

In the first example Arkady should go through important places $ 1→3→4→5 $ . In the second example Arkady can't start his walk because at time moment $ 0 $ it's impossible to use the only passage.