You are given a tree of out-degree with nodes or, in other words, each
node can have at most
children. The tree is constructed so it is of the “lowest
energy”: the nodes are placed in a new depth of the tree only
when all the places (from left to right) in the previous depth
have been filled. This is also the order of enumerating the
nodes, starting with 1. Picture 1 depicts an example of a
tree of order with
nodes.
You need to output answers to queries in the form of
, where the answer is the minimal
number of steps needed to get from node to node .
Input
The first line of input contains the integers (), () and () from the task. Each of the
following lines
contains pairs
(, ) from the task.
Output
Output lines, each
line containing the answer to a query from the task.
Sample Input 1 |
Sample Output 1 |
7 2 3
1 2
2 1
4 7
|
1
1
4
|
Sample Input 2 |
Sample Output 2 |
9 3 3
8 9
5 7
8 4
|
2
2
3
|