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

Source: Internet
Author: User

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 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 ≤ limit n ≤ limit 25, 0 ≤ limit k limit ≤ limit n, 1 bytes ≤ bytes S memory ≤ bytes 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 hour ≤ artificial ai hour ≤ upper 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 in 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.

Each item has three statuses. The total number of statuses is 3 ^ 25, which is too large.
You can use map to save the result.

/*************************************** * *********************************> File Name: CF-297-E.cpp> Author: ALex> Mail: zchao1995@gmail.com> Created Time: friday ******************************** **************************************** /# 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 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 % 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 ;}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.