CF1829H.Don't Blame Me
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Sadly, the problem setter couldn't think of an interesting story, thus he just asks you to solve the following problem.
Given an array a consisting of n positive integers, count the number of non-empty subsequences for which the bitwise AND of the elements in the subsequence has exactly k set bits in its binary representation. The answer may be large, so output it modulo 109+7 .
Recall that the subsequence of an array a is a sequence that can be obtained from a by removing some (possibly, zero) elements. For example, [1,2,3] , [3] , [1,3] are subsequences of [1,2,3] , but [3,2] and [4,5,6] are not.
Note that AND represents the bitwise AND operation.
输入格式
Each test contains multiple test cases. The first line contains the number of test cases t ( 1≤t≤104 ). The description of the test cases follows.
The first line of each test case consists of two integers n and k ( 1≤n≤2⋅105 , 0≤k≤6 ) — the length of the array and the number of set bits that the bitwise AND the counted subsequences should have in their binary representation.
The second line of each test case consists of n integers ai ( 0≤ai≤63 ) — the array a .
It is guaranteed that the sum of n over all test cases doesn't exceed 2⋅105 .
输出格式
For each test case, output a single integer — the number of subsequences that have exactly k set bits in their bitwise AND value's binary representation. The answer may be large, so output it modulo 109+7 .
输入输出样例
输入#1
6 5 1 1 1 1 1 1 4 0 0 1 2 3 5 1 5 5 7 4 2 1 2 3 12 0 0 2 0 2 0 2 0 2 0 2 0 2 10 6 63 0 63 5 5 63 63 4 12 13
输出#1
31 10 10 1 4032 15