Codeforces Round #297 (Div. 2)---E. Anya and Cubes

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 ≤ 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.
Sample test(s)
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.

每种物品3个状态,总共状态数有3^25,太大
折半枚举就行,用map保存结果

/*************************************************************************
    > File Name: CF-297-E.cpp
    > Author: ALex
    > Mail: zchao1995@gmail.com 
    > Created Time: 2015年03月27日 星期五 13时18分20秒
 ************************************************************************/

#include <map>
#include <set>
#include <queue>
#include <stack>
#include <vector>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <iostream>
#include <algorithm>
using namespace std;

const double pi = acos(-1.0);
const int inf = 0x3f3f3f3f;
const double eps = 1e-15;
typedef long long LL;

LL fac[20];
map <LL, LL> mp[30];
LL num[30];
int n, k;
LL ans, s;

void dfs_1(int i, int cnt, LL sum)
{
    if (sum > s || cnt > k)
    {
        return;
    }
    if (i == n / 2)
    {
        ++mp[cnt][sum];
        return;
    }
    dfs_1(i + 1, cnt, sum);
    dfs_1(i + 1, cnt, sum + num[i]);
    if (num[i] <= 18)
    {
        dfs_1(i + 1, cnt + 1, sum + fac[num[i]]);
    }
}

void dfs_2(int i, int cnt, LL sum)
{
    if (sum > s || cnt > k)
    {
        return;
    }
    if (i == n)
    {
        for (int j = 0; j + cnt <= k; ++j)
        {
            if (mp[j].count(s - sum))
            {
                ans += mp[j][s - sum];
            }
        }
        return;
    }
    dfs_2(i + 1, cnt, sum);
    dfs_2(i + 1, cnt, sum + num[i]);
    if (num[i] <= 18)
    {
        dfs_2(i + 1, cnt + 1, sum + fac[num[i]]);
    }
}

int main()
{
    fac[0] = 1;
    for (int i = 1; i <= 18; ++i)
    {
        fac[i] = fac[i - 1] * i;
    }
    scanf("%d%d%lld", &n, &k, &s);
    for (int i = 0; i < n; ++i)
    {
        scanf("%lld", &num[i]);
    }
    dfs_1(0, 0, 0);
    ans = 0;
    dfs_2(n / 2, 0, 0);
    printf("%lld\n", ans);
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值