B - Camphor Tree Editorial /

Time Limit: 1 sec / Memory Limit: 256 MB

配点 100100

問題文

京都大学の時計台の前には巨大なクスノキが生えています。 観察の結果、このクスノキの構造について次のことが分かっています。

  • ある正整数 NN があり、クスノキには 2N12^N-1 個の分岐点が存在する。
  • 分岐点は 11 から 2N12^N-1 まで番号付けられている。
  • 1i2N111 \leq i \leq 2^{N-1}-1 を満たす各整数 ii について以下のように枝がある。
    • 分岐点 ii と分岐点 2i2i が枝で繋がっている。
    • 分岐点 ii と分岐点 2i+12i+1 が枝で繋がっている。
  • 上で述べられた条件を満たさない枝は存在しない。

例えば N=3N=3 のときのクスノキの構造は下の図のようになっています.

クスノキ N=3N=3

あなたは、このクスノキを登りたいと考えています。 クスノキの分岐点 SS から TT まで木登り可能であるとは、S=TS=T であるか、または分岐点 SS から分岐点 TT まで通過する分岐点の番号が増大するように枝をたどっていくことができることを言います。 分岐点の番号 SS と分岐点の番号 TT が与えられるので SS から TT へ木登り可能かどうか判定してください。 また木登り可能であるときには、何本の枝を通過する必要があるかを答えてください。

制約

  • 1N251 \leq N \leq 25
  • 1S2N11 \leq S \leq 2^N-1
  • 1T2N11 \leq T \leq 2^N-1
  • N,S,TN,S,T は整数である。

入力

入力は以下の形式で標準入力から与えられる。

NN SS TT

出力

SS から TT へ木登り可能でないときは -1 を出力せよ。 SS から TT へ木登り可能であるときは通過する必要のある枝の本数を出力せよ。


入力例1Copy

Copy
3 2 4

出力例1Copy

Copy
1

分岐点 22 から 44 に木登り可能であり枝を 11 本通過するので 1 を出力します。


入力例2Copy

Copy
3 7 1

出力例2Copy

Copy
-1

入力例3Copy

Copy
4 2 2

出力例3Copy

Copy
0

Score : 100100 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 NN and the kusunoki has 2N12^N-1 branch points, which are numbered from 11 to 2N12^N-1.
  • For each integer ii that holds 1i2N111 \leq i \leq 2^{N-1}-1, the kusunoki has branches according to the following rules.
    • Branch point ii and 2i2i are connected with a branch.
    • Branch point ii and 2i+12i + 1 are connected with a branch.
  • There is no branch that does not hold the above rules.

For example, for N=3N=3, the structure of the kusunoki is as follows.

Kusunoki N=3N=3

You want to climb this kusunoki. You can climb from branch point SS to TT if and only if S=TS=T or there exists a path of branches from SS to TT, where the numbers of branch points are in ascending order from SS to TT. Given two integers SS and TT, determine whether you can climb from branch point SS to TT. Also, if it is possible, answer the lowerst number of branches you need to climb.

Constraints

  • 1N251 \leq N \leq 25
  • 1S2N11 \leq S \leq 2^N-1
  • 1T2N11 \leq T \leq 2^N-1
  • N,S,TN,S,T are integers.

Input

Input is given from Standard Input in the following format:

NN SS TT

Output

If you can not climb from SS to TT, print -1. Otherwise, print the lowest number of branches you need to climb.


Sample Input 1Copy

Copy
3 2 4

Sample Output 1Copy

Copy
1

Since you can climb from branch point 22 to 44 through one branch, print 1.


Sample Input 2Copy

Copy
3 7 1

Sample Output 2Copy

Copy
-1

Sample Input 3Copy

Copy
4 2 2

Sample Output 3Copy

Copy
0

Source Name

KUPC2017


2025-04-05 (Sat)
01:46:01 +00:00