SAMER08A - Almost Shortest Path


Finding the shortest path that goes from a starting point to a destination point given a set of points and route lengths connecting them is an already well known problem, and it's even part of our daily lives, as shortest path programs are widely available nowadays.

Most people usually like very much these applications as they make their lives easier. Well, maybe not that much easier.

Now that almost everyone can have access to GPS navigation devices able to calculate shortest paths, most routes that form the shortest path are getting slower because of heavy traffic. As most people try to follow the same path, it's not worth it anymore to follow these directions.

With this in his mind, your boss asks you to develop a new application that only he will have access to, thus saving him time whenever he has a meeting or any urgent event. He asks you that the program must answer not the shortest path, but the almost shortest path. He defines the almost shortest path as the shortest path that goes from a starting point to a destination point such that no route between two consecutive points belongs to any shortest path from the starting point to the destination.

For example, suppose the figure below represents the map given, with circles representing location points, and lines representing direct, one-way routes with lengths indicated. The starting point is marked as S and the destination point is marked as D. The bold lines belong to a shortest path (in this case there are two shortest paths, each with total length 4). Thus, the almost shortest path would be the one indicated by dashed lines (total length 5), as no route between two consecutive points belongs to any shortest path. Notice that there could exist more than one possible answer, for instance if the route with length 3 had length 1. There could exist no possible answer as well.

subir imagenes

Input

The input contains several test cases. The first line of a test case contains two integers N (2 ≤ N ≤ 500) and M (1 ≤ M ≤ 104), separated by a single space, indicating respectively the number of points in the map and the number of existing one-way routes connecting two points directly. Each point is identified by an integer between 0 and N -1. The second line contains two integers S and D, separated by a single space, indicating respectively the starting and the destination points (SD; 0 ≤ S, D < N).

Each one of the following M lines contains three integers U, V and P (UV; 0 ≤ U, V < N; 1 ≤ P ≤ 103), separated by single spaces, indicating the existence of a one-way route from U to V with distance P. There is at most one route from a given point U to a given point V, but notice that the existence of a route from U to V does not imply there is a route from V to U, and, if such road exists, it can have a different length. The end of input is indicated by a line containing only two zeros separated by a single space.

Output

For each test case in the input, your program must print a single line, containing -1 if it is not possible to match the requirements, or an integer representing the length of the almost shortest path found.

Example

Input:
7 9
0 6
0 1 1
0 2 1
0 3 2
0 4 3
1 5 2
2 6 4
3 6 2
4 6 4
5 6 1
4 6
0 2
0 1 1
1 2 1
1 3 1
3 2 1
2 0 3
3 0 2
6 8
0 1
0 1 1
0 2 2
0 3 3
2 5 3
3 4 2
4 1 1
5 1 1
3 0 1
0 0

Output:
5
-1
6

hide comments
golu20174024: 2019-01-28 19:30:59

wohoo AC in one go...use multiset of pair under map in order to delete edges

sachinspoj: 2019-01-20 15:18:15

very nice problem!!
5 8
0 4
0 1 3
1 4 1
0 2 1
2 4 6
0 3 5
3 4 3
3 2 2
2 3 2
0 0

ans : 6

techidspoj: 2018-08-02 12:09:59

WA because only one line!

anushka_ahuja: 2018-06-18 14:43:17

ac in one go !!
test cases say it all
map & dijkstras!!!
My 50th!

Last edit: 2018-06-18 14:43:31
vicky_1998: 2017-12-03 11:44:26

Wasted hours because of one line misplaces!!!!really frustrating
By the way learned sth

sam128: 2017-08-14 12:28:25

AC in one go..Best problem so far on dkshtra....Try using maps to store the nodes and then delete it,,,if u are unable to delete it from vector

dop1943: 2017-07-21 12:32:59

best classical disjkstra's problem

Last edit: 2017-07-21 12:33:17
code_aim: 2017-06-09 17:11:46

One of the best questions of dijkstra's.

himmi97: 2017-05-24 17:24:45

@baqir00 you should use greater in priority_queue..I did the same mistake.

Siddharth: 2017-04-23 20:14:28

Please don't use spojtoolkit for this because some tests are wrong. Btw very nice problem.

Last edit: 2017-04-23 20:14:58

Added by:Diego Satoba
Date:2008-11-23
Time limit:1s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:C CPP JAVA PAS-GPC PAS-FPC
Resource:South American Regional Contests 2008