当给定一个序列a[0],a[1],a[2],...,a[n-1] 和一个整数K时,我们想找出,有多少子序列满足这么一个条件:把当前子序列里面的所有元素乘起来恰好等于K。
样例解释:
对于第一个数据,我们可以选择[3]或者[1(第一个1), 3]或者[1(第二个1), 3]或者[1,1,3]。所以答案是4。
Input
多组测试数据。在输入文件的第一行有一个整数T(0< T <= 20),表示有T组数据。 接下来的2*T行,会给出每一组数据 每一组数据占两行,第一行包含两个整数n, K(1<=n<=1000,2<=K<=100000000)他们的含意已经在上面提到。 第二行包含a[0],a[1],a[2],...,a[n-1] (1<= a[i]<=K) 以一个空格分开。 所有输入均为整数。
Output
对于每一个数据,将答案对1000000007取余之后输出即可。
Input示例
2 3 3 1 1 3 3 6 2 3 6
Output示例
42
#include <iostream> #include <map> using namespace std; const int MOD = 1e9 + 7; const int MAXN = 1005; const int MAXK = 1e8 + 5; int T, n, k; map<int, int> buf; map<int, int> temp; int a[MAXN]; int main() { cin >> T; for (int i = 0; i < T; i++) { cin >> n >> k; for (int j = 0; j < n; j++) { cin >> a[j]; if (k % a[j] == 0) { temp = buf; for (map<int, int>::iterator it = temp.begin(); it != temp.end(); it++) { int num = a[j] * (it->first); if ((k % num) == 0) { buf[num] = (buf[num] + it->second) % MOD; } } buf[a[j]] = (buf[a[j]] + 1) % MOD; } } cout << buf[k] << endl; buf.clear(); } return 0; }