Problem V
Spiderman's Workout
Staying fit is important for every super hero, and Spiderman
is no exception. Every day he undertakes a climbing exercise in
which he climbs a certain distance, rests for a minute, then
climbs again, rests again, and so on. The exercise is described
by a sequence of distances
He wants your help in determining when he should go up and when he should go down. The answer must be legal: it must start and end at street level (0 meters above ground) and it may never go below street level. Among the legal solutions he wants one that minimizes the required building height. When looking for a solution, you may not reorder the distances.
If the distances are 20 20 20 20 he can either climb up, up, down, down or up, down, up, down. Both are legal, but the second one is better (in fact optimal) because it only requires a building of height 22, whereas the first one requires a building of height 42. If the distances are 3 2 5 3 1 2, an optimal legal solution is to go up, up, down, up, down, down. Note that for some distance sequences there is no legal solution at all (e.g., for 3 4 2 1 6 4 5).
Input
The first line of the input contains an integer
Output
For each input scenario a single line should be output. This
line should either be the string “IMPOSSIBLE” if no legal
solution exists, or it should be a string of length
Sample Input 1 | Sample Output 1 |
---|---|
3 4 20 20 20 20 6 3 2 5 3 1 2 7 3 4 2 1 6 4 5 |
UDUD UUDUDD IMPOSSIBLE |