100 atcoder#AGC012E. [AGC012E] Camel and Oases
[AGC012E] Camel and Oases
Score : points
Problem Statement
There are oases on a number line. The coordinate of the -th oases from the left is .
Camel hopes to visit all these oases. Initially, the volume of the hump on his back is . When the volume of the hump is , water of volume at most can be stored. Water is only supplied at oases. He can get as much water as he can store at a oasis, and the same oasis can be used any number of times.
Camel can travel on the line by either walking or jumping:
- Walking over a distance of costs water of volume from the hump. A walk that leads to a negative amount of stored water cannot be done.
- Let be the amount of water stored at the moment. When , Camel can jump to any point on the line of his choice. After this move, the volume of the hump becomes (rounded down to the nearest integer), and the amount of stored water becomes .
For each of the oases, determine whether it is possible to start from that oasis and visit all the oases.
Constraints
- and are all integers.
Input
Input is given from Standard Input in the following format:
Output
Print lines. The -th line should contain Possible
if it is possible to start from the -th oasis and visit all the oases, and Impossible
otherwise.
3 2
1 3 6
Possible
Possible
Possible
It is possible to start from the first oasis and visit all the oases, as follows:
- Walk from the first oasis to the second oasis. The amount of stored water becomes .
- Get water at the second oasis. The amount of stored water becomes .
- Jump from the second oasis to the third oasis. The amount of stored water becomes , and the volume of the hump becomes .
7 2
-10 -4 -2 0 2 4 10
Impossible
Possible
Possible
Possible
Possible
Possible
Impossible
A oasis may be visited any number of times.
16 19
-49 -48 -33 -30 -21 -14 0 15 19 23 44 52 80 81 82 84
Possible
Possible
Possible
Possible
Possible
Possible
Possible
Possible
Possible
Possible
Possible
Possible
Impossible
Impossible
Impossible
Impossible