Problem C
TripTik
Have you ever been on a long road journey? AAA (the American Automobile Association) has a tool for long road trips. It’s called a TripTik, and it follows the highways, showing points of interest.
You are building a TripTik app, which allows users to see
what’s on their route. It models a highway as a straight line,
and points of interest as points along that line. All points
have an integer coordinate as well as a unique integral weight.
Your app provides a viewport, which can scale in and out. Also,
to prevent the display from becoming too cluttered, only a
small number of the points with the highest weights are shown.
The initial viewport is centered at
There are three valid operations for changing your viewport:
-
Zoom out: double the dimensions of your viewport while keeping the center the same; this can always be done regardless of the current dimensions of the viewport.
-
Zoom in: halve the dimensions of your viewport while keeping the center the same; this can always be done regardless of the current dimensions of the viewport.
-
Recenter: change the center of your viewport to be equal to a point of interest visible in your viewport (including the boundary).
There is an important caveat: Your TripTik app will not render all points of interest in a given viewport; instead, it will only render a certain number of points in the viewport with the highest weights. The remaining points with lower weight are not visible, and therefore are not valid targets for the recenter operation.
For each point of interest, determine the minimum number of operations needed to go from the starting viewport to a viewport where that point of interest is centered and visible. Consider each point of interest independently.
Input
The first line of input contains two integers
Each of the next
Output
Output
Sample Input 1 | Sample Output 1 |
---|---|
4 2 100 4 1 3 |
-1 5 1 3 |