Problem B
Single source shortest path, time table
Input
The input consists of several test cases. Each test case
starts with a line with four non-negative integers,
For instance, the edge 3 8 15 10 5
indicates that at time
Then follow
Input will be terminated by a line containing four zeros, this line should not be processed.
Output
For each query, output a single line containing the minimum
time to reach the node queried, assuming we start in node
Sample Input 1 | Sample Output 1 |
---|---|
4 4 4 0 0 1 15 10 5 1 2 15 10 5 0 2 5 5 30 3 0 0 1 1 0 1 2 3 2 1 1 0 0 1 100 0 5 1 0 0 0 0 |
0 20 30 Impossible 105 |