Codeforces Round #297 (Div. 2)E. Anya and Cubes(折半搜索)

E. Anya and Cubes
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

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 kexclamation 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 nk and S (1 ≤ n ≤ 250 ≤ k ≤ n1 ≤ S ≤ 1016) — 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 ai (1 ≤ ai ≤ 109) — 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.

Examples
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。 
(1n25,0kn,1S1016,1ai109)

分析:

每个物品有三种决策,直接暴力枚举O(3^n)会超时,但是我们发现O(3^(n/2))不会超时,于是可以采用中途相遇法。 
先暴力枚举一半的决策,把对应的值、使用次数和方案数存到map里,然后再枚举另一半,在map中查找。 
复杂度O(3^(n/2)log(3^(n/2)))=O(3^(n/2)n)。

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
ll s, a[30], fact[20], ans;
map<ll, int> mp[30];
int n, k;
void dfs1(ll sum, int pos, int cnt)
{
    if(pos == n / 2 + 1)
    {
        if(mp[cnt].count(sum))
            mp[cnt][sum]++;
        else
            mp[cnt][sum] = 1;
        return ;
    }
    dfs1(sum, pos+1, cnt);
    if(a[pos] <= s - sum)
        dfs1(sum + a[pos], pos+1, cnt);
    if(cnt < k && a[pos] <= 19 && fact[a[pos]] <= s - sum)
        dfs1(sum+fact[a[pos]], pos+1, cnt+1);
}
void dfs2(ll sum, int pos, int cnt)
{
    if(pos == n + 1)
    {
        for(int i = 0; i + cnt <= k; i++)
            if(mp[i].count(s-sum))
                ans += mp[i][s-sum];
        return ;
    }
    dfs2(sum, pos+1, cnt);
    if(a[pos] <= s - sum)
        dfs2(sum + a[pos], pos+1, cnt);
    if(cnt < k && a[pos] <= 19 && fact[a[pos]] <= s - sum)
        dfs2(sum+fact[a[pos]], pos+1, cnt+1);
}
int main()
{
    fact[0] = 1;
    for(ll i = 1; i <= 19; i++)
        fact[i] = fact[i-1] * i;
    scanf("%d%d%I64d", &n, &k, &s);
    for(int i = 1; i <= n; i++)
        scanf("%I64d", &a[i]);
    dfs1(0, 1, 0);
    dfs2(0, n/2+1, 0);
    printf("%I64d\n", ans);
    return 0;
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值