6461:Tak and Cards(数位DP)

6461: Tak and Cards

时间限制: 1 Sec   内存限制: 128 MB
提交: 173   解决: 63
[ 提交][ 状态][ 讨论版][命题人: admin]

题目描述

Tak has N cards. On the i-th (1≤i≤N) card is written an integer xi. He is selecting one or more cards from these N cards, so that the average of the integers written on the selected cards is exactly A. In how many ways can he make his selection?

Constraints
1≤N≤50
1≤A≤50
1≤xi≤50
N,A,xi are integers.
Partial Score
200 points will be awarded for passing the test set satisfying 1≤N≤16.

输入

The input is given from Standard Input in the following format:
N A
x1 x2 … xN

输出

Print the number of ways to select cards such that the average of the written integers is exactly A.

样例输入

4 8
7 9 8 9

样例输出

5

提示

The following are the 5 ways to select cards such that the average is 8:
Select the 3-rd card.
Select the 1-st and 2-nd cards.
Select the 1-st and 4-th cards.
Select the 1-st, 2-nd and 3-rd cards.
Select the 1-st, 3-rd and 4-th cards.


#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;
int n, a, temp;
long long dp[55][3000];int main()
{memset(dp, 0, sizeof(dp));scanf("%d%d", &n, &a);dp[0][0]=1;for(int i=1;i<=n;i++){scanf("%d", &temp);for(int j=i-1;j>=0;j--)for(int k=0;k<=55*j;k++)dp[j+1][k+temp]+=dp[j][k];}long long ans=0;for(int i=1;i<=n;i++)ans+=dp[i][i*a];printf("%lld\n", ans);return 0;
}/**************************************************************Problem: 6461User: ldu_reserver201701Language: C++Result: 正确Time:12 msMemory:2984 kb
****************************************************************/


本文来自互联网用户投稿,文章观点仅代表作者本人,不代表本站立场,不承担相关法律责任。如若转载,请注明出处。 如若内容造成侵权/违法违规/事实不符,请点击【内容举报】进行投诉反馈!

相关文章

立即
投稿

微信公众账号

微信扫一扫加关注

返回
顶部