SP5143 BNYINT - Binary Integer

Description

Please click [here](http://www.spoj.com/content/john_jones:hangzhou2008.pdf) to download a PDF version of the contest problems. The problem is problem B in the PDF. Remember that you must use stdin/stdout at SPOJ. - - - - - - MathJax.Hub.Config({ tex2jax: { inlineMath: [['$','$'], ['\\(','\\)']], skipTags: ["script","noscript","style","textarea","code"] } }); An antique machine with $\\binom{N}{3}$ switches capable of processing integers in the range $0 \\ldots 2^N - 1$ has just been discovered. Each switch is associated to a distinct integer in $0 \\ldots 2^N - 1$ with exactly three ones in its binary representation. By setting switches associated with number $X\_0, X\_1, \\ldots, X\_{M-1}$ to on, any integer $Y$ passing through the machine will render a result of $Y \\oplus X\_0 \\oplus X\_1 \\oplus \\ldots \\oplus X\_{M-1}$ (here “$\\oplus$” stands for bitwise- XOR). We are interested in the number of configurations capable of transforming integer $S$ into $T$ with exactly $K$ switches set to on. Could you write a program to help us?

Input Format

There are multiple test cases in the input file. Each test case starts with two integers, $N$ and $K$ ($1 \\le N \\le 40, 0 \\le K \\le \\min\\{20, \\binom{N}{3}\\}$), followed by two binary integers, $S$ and $T$, each containing exactly $N$ bits. Two successive test cases are separated by a blank line. A case with $N = 0$ and $K = 0$ indicates the end of the input file, and should not be processed by your program.

Output Format

For each test case, please print a single integer, the total number of ways to transform the first integer into the second one. Since the answer could be quite large, you are only required to find the result % $10007$.