

Time Limit: 1 sec / Memory Limit: 256 MB
配点 点
問題文
京都大学の時計台の前には巨大なクスノキが生えています。 観察の結果、このクスノキの構造について次のことが分かっています。
- ある正整数 があり、クスノキには 個の分岐点が存在する。
- 分岐点は から まで番号付けられている。
- を満たす各整数 について以下のように枝がある。
- 分岐点 と分岐点 が枝で繋がっている。
- 分岐点 と分岐点 が枝で繋がっている。
- 上で述べられた条件を満たさない枝は存在しない。
例えば のときのクスノキの構造は下の図のようになっています.

クスノキ
あなたは、このクスノキを登りたいと考えています。 クスノキの分岐点 から まで木登り可能であるとは、 であるか、または分岐点 から分岐点 まで通過する分岐点の番号が増大するように枝をたどっていくことができることを言います。 分岐点の番号 と分岐点の番号 が与えられるので から へ木登り可能かどうか判定してください。 また木登り可能であるときには、何本の枝を通過する必要があるかを答えてください。
制約
- は整数である。
入力
入力は以下の形式で標準入力から与えられる。
出力
から へ木登り可能でないときは -1
を出力せよ。
から へ木登り可能であるときは通過する必要のある枝の本数を出力せよ。
入力例1Copy
3 2 4
出力例1Copy
1
分岐点 から に木登り可能であり枝を 本通過するので 1
を出力します。
入力例2Copy
3 7 1
出力例2Copy
-1
入力例3Copy
4 2 2
出力例3Copy
0
Score : points
Problem Statement
There is a huge kusunoki (camphor tree) in front of the clock tower of Kyoto University. It is reported that this kusunoki has the following structure.
- There exists a positive integer and the kusunoki has branch points, which are numbered from to .
- For each integer that holds , the kusunoki has branches according to the following rules.
- Branch point and are connected with a branch.
- Branch point and are connected with a branch.
- There is no branch that does not hold the above rules.
For example, for , the structure of the kusunoki is as follows.

Kusunoki
You want to climb this kusunoki. You can climb from branch point to if and only if or there exists a path of branches from to , where the numbers of branch points are in ascending order from to . Given two integers and , determine whether you can climb from branch point to . Also, if it is possible, answer the lowerst number of branches you need to climb.
Constraints
- are integers.
Input
Input is given from Standard Input in the following format:
Output
If you can not climb from to , print -1
.
Otherwise, print the lowest number of branches you need to climb.
Sample Input 1Copy
3 2 4
Sample Output 1Copy
1
Since you can climb from branch point to through one branch, print 1
.
Sample Input 2Copy
3 7 1
Sample Output 2Copy
-1
Sample Input 3Copy
4 2 2
Sample Output 3Copy
0