CF827F.Dirty Arkady's Kitchen

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

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 nn from place 11 . He plans to exit the place 11 at time moment 00 and reach the place nn as early as he can. Please find the minimum time he should spend on his way.

输入格式

The first line contains two integers nn and mm ( 1<=n<=51051<=n<=5·10^{5} , 0<=m<=51050<=m<=5·10^{5} ) — the number of important places and the number of passages, respectively.

After that, mm lines follow, each of them describe one passage. Each line contains four integers aa , bb , ll and rr ( 1<=a,b<=n1<=a,b<=n , aba≠b , 0<=l<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 nn , 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 13451→3→4→5 .

In the second example Arkady can't start his walk because at time moment 00 it's impossible to use the only passage.

首页