Hypercube graphs are fascinatingly regular, hence you have
devoted a lot of time studying the mathematics related to them.
The vertices of a hypercube graph of dimension are all binary strings of length
, and two vertices are
connected if they differ in a single position. There are many
interesting relationships between hypercube graphs and
error-correcting code.
One such relationship concerns the -bit Gray Code, which is an
ordering of the binary strings of length , defined recursively as follows.
The sequence of words in the -bit code first consists of the
words of the -bit
code, each prepended by a , followed by the same words in
reverse order, each prepended by a . The -bit Gray Code just consists of a
and a . For example the -bit Gray Code is the following
sequence:
Now, the -bit Gray
Code forms a Hamiltonian path in the -dimensional hypercube, i.e., a
path that visits every vertex exactly once (see
Figure 1).
You wonder how many vertices there are between the vertices
( zeros) and ( ones) on that path. Obviously it
will be somewhere between and , since in general
is the first
vertex, and is
somewhere in the second half of the path. After finding an
elegant answer to this question you ask yourself whether you
can generalise the answer by writing a program that can
determine the number of vertices between two arbitrary vertices
of the hypercube, in the path corresponding to the Gray
Code.
Input
The input consists of a single line, containing:
-
one integer
(),
the dimension of the hypercube
-
two binary strings and , both of length , where appears before in the -bit Gray Code.
Output
Output the number of code words between and in the -bit Gray Code.
Sample Input 1 |
Sample Output 1 |
3 001 111
|
3
|
Sample Input 2 |
Sample Output 2 |
3 110 100
|
2
|