Problem G
Texas Summers
Summer in Texas can be very hot. But Texans are tough, and in a weird way some of them enjoy the heat; for even the heat is bigger in Texas. But the heat can be quite uncomfortable for computer science students who are new to Texas and are not used to the sweating it can cause.
These students want to minimize the amount they sweat while
walking from their dormitory to class. When they enter the
sunshine, they begin sweating at the rate
Write a program that helps a student find a path from the dormitory to class which minimizes the total amount of sweat she expends.
Input
Input describes the locations of shady spots on campus as
well as the student’s dormitory and class locations. Input
begins with a line containing an integer
Output
Print a path the student can take to get from her dormitory to class. The path should minimize the total sweat produced along the whole path. Print the path as indexes of the shady spots (from the order given in the input, with the first shady spot having index 0). If the best path contains no shady spots, output a single ‘-’. If there are multiple paths that minimize the total sweat, print any one of them.
Sample Input 1 | Sample Output 1 |
---|---|
3 1 1 2 -2 5 -1 0 0 9 0 |
1 2 |
Sample Input 2 | Sample Output 2 |
---|---|
6 8 2 4 0 8 0 4 -1 7 -1 6 -2 2 1 9 2 |
1 3 5 4 2 |
Sample Input 3 | Sample Output 3 |
---|---|
1 -5 -5 0 0 10 10 |
- |