Problem B
A Greedy Hike
One of our students, Alice, loves to go on long mountain hikes. When she first started hiking, Alice would just pick random trails in a map, but soon realized this was not a good strategy: Alice loves mountains, but is not crazy about steep climbs (or descents), and some of the trails involve large elevation changes in a very short distance. So, as a Computer Science student, Alice decided she would come up with a concrete algorithm to try to minimize the number of steep climbs and descents during her hike. However, Alice knows that finding an optimal path is challenging, so she instead decides to apply a greedy algorithm: at each point in the hike, she will always follow the path that involves the smallest absolute elevation change. For example, given the choice between ascending 500ft and descending 1000ft, Alice will actually choose to ascend 500ft because it involves a smaller absolute elevation change (yes, climbing is more fatiguing than descending, but a steep descent can be dangerous and prone to falls).
To figure out the best path, Alice will use a simplified
elevation map that shows elevations on an
![\includegraphics[width=0.6\textwidth ]{map1.png}](/problems/uchicago.greedyhike/file/statement/en/img-0001.png)
Notice that
Alice begins her hike at a starting position
denoted by coordinates
At each step in her hike, Alice will always move to the
right by one position (i.e., she will increase her
![\includegraphics[width=0.23\textwidth ]{map2.png}](/problems/uchicago.greedyhike/file/statement/en/img-0002.png)
In this case, Alice would choose to move to position
But what if more than one option has the same elevation
change? Well, let’s denote the three possible options as
![\includegraphics[width=0.14\textwidth ]{map3.png}](/problems/uchicago.greedyhike/file/statement/en/img-0003.png)
The tie-breaking rules are simple:
-
If the absolute elevation change for
or is equal to the absolute elevation change for , then we choose . Note that this includes the case when all three options have the same absolute elevation change. -
If the absolute elevation change for
is the same as the one for (but they are still both smaller than the one for ), then we choose .
Alice will continue to take steps, according to the
algorithm described above, until she reaches the rightmost edge
of the map (i.e., until her
![\includegraphics[width=0.55\textwidth ]{map4.png}](/problems/uchicago.greedyhike/file/statement/en/img-0004.png)
Once we compute a path, there are two things that Alice cares about:
-
The ending position, which we will denote as
. In this case, the ending position is . Notice how will always be equal to . -
The sum of all the absolute elevation changes, which we will denote as
. In this case, this would be 13:
Finally, take into account that Alice’s algorithm is not
guaranteed to find the best path, although it will usually find
a pretty good one. For example, take this map, assuming
![\includegraphics[width=0.55\textwidth ]{map5.png}](/problems/uchicago.greedyhike/file/statement/en/img-0005.png)
Our greedy algorithm produces a path with
Input
The input contains the specification of an elevation map.
The specification starts with a line with
The input is followed by
Note that the two sample inputs correspond to the two maps discussed earlier.
Output
The output will be the result of running the greedy hiking
algorithm. It will be a single line with three values, each
separated by a single space:
Sample Input 1 | Sample Output 1 |
---|---|
5 7 2 1 0 3 15 10 15 5 0 5 8 20 12 12 17 5 7 10 15 5 12 9 11 5 7 3 2 5 5 7 0 9 11 8 9 2 3 |
2 6 13 |
Sample Input 2 | Sample Output 2 |
---|---|
4 4 1 0 0 2 10 15 0 10 15 20 0 3 3 3 0 10 10 10 |
0 3 15 |