折半DFS+MAP

来源:互联网 发布:螺旋箍筋的算法 编辑:程序博客网 时间:2024/05/22 14:15

Anya loves to fold and stick. Today she decided to do just that.

Anya has n cubes lying in a line and numbered from 1 to n from left to right, with natural numbers written on them. She also has k stickers with exclamation marks. We know that the number of stickers does not exceed the number of cubes.

Anya can stick an exclamation mark on the cube and get the factorial of the number written on the cube. For example, if a cube reads 5 , then after the sticking it reads 5! , which equals 120 .

You need to help Anya count how many ways there are to choose some of the cubes and stick on some of the chosen cubes at most k exclamation marks so that the sum of the numbers written on the chosen cubes after the sticking becomes equal to S . Anya can stick at most one exclamation mark on each cube. Can you do it?

Two ways are considered the same if they have the same set of chosen cubes and the same set of cubes with exclamation marks.

Input

The first line of the input contains three space-separated integers n , k and S ( 1 ≤  n  ≤ 25 , 0 ≤  k  ≤  n , 1 ≤  S  ≤ 10 16 ) — the number of cubes and the number of stickers that Anya has , and the sum that she needs to get.

The second line contains n positive integers i ( 1 ≤  i  ≤ 10 9 ) — the numbers, written on the cubes. The cubes in the input are described in the order from left to right, starting from the first one.

Multiple cubes can contain the same numbers.

Output

Output the number of ways to choose some number of cubes and stick exclamation marks on some of them so that the sum of the numbers became equal to the given number S .

Example
Input
2 2 30 4 3
Output
1
Input
2 2 7 4 3
Output
1
Input
3 1 1 1 1 1
Output
6
Note

In the first sample the only way is to choose both cubes and stick an exclamation mark on each of them.

In the second sample the only way is to choose both cubes but don't stick an exclamation mark on any of them.

In the third sample it is possible to choose any of the cubes in three ways, and also we may choose to stick or not to stick the exclamation mark on it. So, the total number of ways is six.


/*题意:有n个数,从中选出若干个数,可以再从选择的数中选择不超过k个数让它们变为自身的阶乘,问有几种方案使得选出来的若干个数的和等于S。方法:折半DFS+MAP*/#include <stdio.h>#include <string.h>#include<iostream>#include <algorithm>#include<math.h>#include<map>using namespace std;int n, m, num[26];long long int jc[20] = { 1 };long long int ans;map<long long int, int>cnt[26];int tmp;long long int S;//当前坐标,当前所使用的魔法棒数量,当前的数量void dfs1(int pos, int y, long long s){if (s > S || y > m)return;if (pos == tmp){//使用y个魔法棒可以获得s数量的方法数++++cnt[y][s];return;}//三种状态:不拿第pos个数,拿第pos个数,使用魔法棒拿第pos个数dfs1(pos + 1, y, s);dfs1(pos + 1, y, s + num[pos]);if (num[pos] < 19)dfs1(pos + 1, y + 1, s + jc[num[pos]]);}void dfs2(int pos, int y, long long int s){if (s > S || y > m)return;if (pos == n){for (int i = 0; i + y <= m; i++){//因为之前的s + 现在的s == S就说明该方法可行//所以现在只需要判断总共的S-现在的s的s的数量的方法是否存在//存在就满足题意if (cnt[i].count(S - s)){//存在ans++ans += cnt[i][S - s];}}return;}//三种状态:同上dfs2(pos + 1, y, s);dfs2(pos + 1, y, s + num[pos]);if (num[pos] < 19){dfs2(pos + 1, y + 1, s + jc[num[pos]]);}}int main(){for (int i = 1; i <= 19; i++){jc[i] = i*jc[i - 1];}while (cin >> n >> m >> S){ans = 0;for (int i = 0; i < n; i++){cin >> num[i];}tmp = min(n, n / 2 + 2);dfs1(0, 0, 0);dfs2(tmp, 0, 0);cout << ans << endl;for (int i = 0; i < 26; i++){cnt[i].clear();}}return 0;}



原创粉丝点击