포럼
문제 ICPC00191

D. Date Pickup

설명

Richard and Janet are going on their first date. Richard has offered to meet her at home with his bicycle, and Janet tells him she will call when she is ready in \(10\) to \(20\) minutes. But Richard is an impatient person; while he could wait at home for Janet's signal, he might also leave early and travel around the neighbourhood for a bit, in order to minimise the time it takes him to reach her once she calls. Due to his impatience, once Richard is on his bicycle, he does not want to ride any slower than the legal speed limit, stop at intersections, or wait outside Janet's house (but he does not mind passing by Janet's house and returning to it later).

Given the directed graph representing the neighbourhood around Richard's and Janet's houses, Richard wants to devise a route around the neighbourhood (after an optional waiting period at his own house) which minimises the time that Janet has to wait in the worst case. He can travel for as long as he likes and visit each intersection as many times as he likes.

Janet will call Richard as soon as she is ready, and at that point Richard will take the shortest path to her that he can. Richard does not know exactly when Janet will be ready, but he knows it will be in somewhere between \(a\) and \(b\) minutes (not necessarily at a whole minute).

If Richard is passing through an intersection at the exact same instant Janet calls, the call is considered to happen before he chooses what to do at the intersection. For example, if he is passing by Janet's house at the moment she calls, he can immediately stop there and she does not have to wait for him at all.

It could happen that Janet never has to wait for \(w\) minutes, but that she might have to wait for \(w - \epsilon\) minutes for arbitrarily small \(\epsilon > 0\), if she calls Richard at some inopportune moment (say, nanoseconds after he has left an intersection). In this case, we still define the worst case waiting time to be \(w\).

제약
입력 형식

The input consists of:
- One line with two integers \(a\), \(b\) (\(0 \le a \le b \le 10^{12}\)), indicating that Janet will be ready in at least \(a\) minutes and at most \(b\) minutes.
- One line with two integers \(n\), \(m\) (\(2 \le n \le m \le 10^5\)), the number of intersections and the number of roads in the neighbourhood. The intersections are numbered from \(1\) to \(n\).
- \(m\) lines, each with three integers \(u\), \(v\) and \(t\) (\(1 \le u,v \le n\), $1 \le t
\le 10^6\(), indicating\ that\ there\ is\ a\ one-way\ road\ from\ intersection \)u\( to\ intersection \)v\(, and\ that\ it\ takes\ Richard\ exactly \)t$ minutes to travel along this road.

Richard's house is at intersection \(1\) and Janet's house is at intersection \(n\). It is guaranteed that it is possible to travel from Richard's house to Janet's house, and that it is possible to exit each intersection through at least one road, even if that road just loops back to the same intersection.

출력 형식

Output the time Janet has to wait in the worst case assuming she will be ready in at least \(a\) minutes and at most \(b\) minutes and Richard plans his route optimally.

It can be shown that the worst case waiting time is always an integer.

예제 1
입력
10 20
3 5
1 3 7
2 1 1
2 3 2
2 3 5
3 2 4
출력
6
예제 2
입력
4 10
5 7
1 4 6
4 5 5
4 5 3
5 5 30
1 2 1
2 3 1
3 2 1
출력
5
문제 정보

생성자가 기록되지 않았습니다.

출처 ICPC NWERC 2018

평가 및 의견

D. Date Pickup

개요
출제자 난이도 Unrated 레이팅 미적용 의견 0 / 1 공개 집계 (커뮤니티 난이도, 주요 주제, 품질)는 의견이 충분히 모이면 공개됩니다.

Log in to rate problems.

개별 의견

아직 의견이 없습니다. 자격이 된다면 위 양식에서 가장 먼저 평가해 보세요.

풀이 제출

D. Date Pickup

게스트로 둘러보고 있습니다. 로그인하면 풀이를 제출하고 진행 상황을 확인할 수 있습니다. 로그인하고 제출하기
공개
C++20 Tab 들여쓰기 · Ctrl+/ 주석 토글 · Enter 자동 들여쓰기
1 1 1 0 공백: 4 · UTF-8