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
kuderrahul: 2023-08-26 20:45:18

Delete the shortest paths , form new graph and run dijkstra , that's it .

psz2007: 2021-09-29 05:00:57

Why I get RE(SIGKILL)??? I don't use abort() or assert() in anyway.

EDIT : I get it. Infinity recursion can also cause SIGKILL.

Last edit: 2021-09-29 06:15:28
guru1603: 2021-06-29 19:44:54

Any one solved it using Java?

nmnsharma007: 2020-07-26 07:59:11

Used 3 dijkstra. AC in 1st go in 0.03 s. Very easy problem

vinty: 2020-04-10 22:41:28

Nice problem.

nadstratosfer: 2020-01-19 02:35:51

Useful problem but -1 for unnecessary language restrictions.

sahil1422: 2020-01-18 12:22:28

Why are C,C++ and Java the only languages allowed? Please allow other languages

udit_dasari19: 2019-06-28 18:08:56

@shubham97361 can u please tell how did u delete all the shortest paths i could only delete one

shubham97361: 2019-06-28 00:36:51

Good problem but one thing i want to clear that you have to delete all shortest path in one go.
For eg:
9 11
0 3
0 1 10
0 7 80
0 4 22
1 4 11
1 2 10
2 3 10
4 5 5
5 6 2
6 3 2
7 8 100
8 3 20
Ans is 200.
Because 0->1->4->5->6->3 and 0->1->2->3 are the shortest path of length 30 so you have to delete both the path in one go. Then the answer will be 200 (0->7->8->3).
Wasted lot of time in understanding the question.

tarungupta: 2019-04-17 11:16:34

AC in one go.. though took a lot of time but it was worth the time. A must do problem.


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