Alp the mountain climber is on the northwest corner of a square area of a mountainous terrain and wishes to find a passage to the opposite (southeast) corner. Alp is currently at an elevation at which oxygen is not needed, but at any higher elevation oxygen is required. Oxygen, when required, is used at the rate of one unit per horizontal step.
The northwest corner of the terrain is at position and the southeast corner is at position , where is a positive integer read from the input file. The elevation of each point , , is an integer read from the input; each elevation occupies a single line in the input file.
Alp moves in a series of horizontal steps, where each step moves Alp a unit north, a unit south, a unit east, or a unit west. Alp must remain in the square region and cannot climb or descend more than 2 units of elevation in a single step. If the elevation at either the beginning or the end of the step requires oxygen, a unit of oxygen is consumed by Alp during the step.
Input Specification
The first line of input is a positive integer indicating the number of trips that Alp must make. For each trip, there is a number of input lines. The first line for each trip contains an integer , indicating the size of the square area of terrain. The next lines each contain a single integer indicating the elevation of a particular point of terrain. The elevations are given for the points in the following order: .
Output Specification
For each trip, if a passage exists, the output is a single line containing an integer indicating the number of units of oxygen consumed. If a passage does not exist, the output is a single line containing the message CANNOT MAKE THE TRIP
. Output lines for the trips should be separated by a single blank line.
Sample Input
2
5
5
4
3
2
1
7
5
6
6
6
8
8
8
9
6
9
6
9
9
6
4
5
4
5
3
2
4
9
9
4
Sample Output
5
CANNOT MAKE THE TRIP
Comments
Since the checker was not implemented properly, it was fixed, and all submissions were rejudged.
Since the original data were weak, new data were added to prevent incorrect solutions from passing.
I've coded a program to solve the problem, but I don't understand the sample data
for each test case, the upper and lower blocks represent the data itself and the minimum oxygen requirement respectively. Since this looks fine to me, but is clearly WA for the sample case itself, what did I misunderstand?
EDIT: Apparently, descending from an elevation that requires oxygen also requires oxygen. The above code is wrong because it assumes the path
should only cost 4, when it is in fact 5.
1 oxygen is consumed if the current elevation or the next elevation is above the beginning elevation:
For example, if Ala starts at [0][0] with an elevation of 5, then any activities (whether it is going up or down) less or equal to that elevation does not need any oxygen (5 -> 4, 4 -> 5, 3 -> 1 etc). If either the activities are above the starting elevation (5 -> 6, 6 -> 5, 4 -> 6, 6 -> 4, 6 -> 8), then it requires 1 oxygen.
in this case here, the route will be:
5 > 7 > 8 > 8 > 6 > 5 > 4 > 5 > 3 5-7 requires oxygen, 7-8 requires oxygen, 8-8 requires oxygen, 8-6 requires oxygen, and 6-5 requires oxygen
Thanks to maxcruickshanks's clarification.
this question has screwed with my mental health for way too long - for anyone else who may need it: yes, you do need to find the minimum amount of oxygen per trip, it IS NOT guaranteed that there's at most 1 way to get from NW to SE.
do you have to find the minimum amount of oxygen for each trip?
This comment is hidden due to too much negative feedback. Show it anyway.