F.A.Q
Hand In Hand
Online Acmers
Problem Archive
Realtime Judge Status
Authors Ranklist
 
     C/C++/Java Exams     
ACM Steps
Go to Job
Contest LiveCast
ICPC@China
Best Coder beta
VIP | STD Contests
    DIY | Web-DIY beta
Author ID 
Password 
 Register new ID

Lord Li's problem

Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)
Total Submission(s): 194    Accepted Submission(s): 110


Problem Description
An antique machine with $\binom{n}{3}$ switches capable of processing integers in the range 0.. ${2^N}-1$has just been discovered. Each switch is associated to a distinct integer in 0.. ${2^N}-1$ with exactly three ones in its binary representation. By setting switches associated with number $X_0, X_1, . . . , X_{m-1}$ to on, any integer Y passing through the machine will render a result of $Y¨’X_0¨’X_1¨’ . . . ¨’X_{m-1}$ (here ¡°¨’¡± 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
There are multiple test cases in the input file. Each test case starts with two integers, N and K (1 ¡Ü N ¡Ü 40, 0 ¡Ü K ¡Ü 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. The number of test cases won¡¯t exceed 50000.
 

Output
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 module 19260817.
 

Sample Input
4 3 1101 1001 3 1 101 010 5 3 11010 10111 0 0
 

Sample Output
Case #1: 1 Case #2: 1 Case #3: 6
 

Source
 

Statistic | Submit | Discuss | Note
Hangzhou Dianzi University Online Judge 3.0
Copyright © 2005-2024 HDU ACM Team. All Rights Reserved.
Designer & Developer : Wang Rongtao LinLe GaoJie GanLu
Total 0.000000(s) query 1, Server time : 2024-04-20 07:25:21, Gzip enabled