计蒜客得到整数X

某君有 n个互不相同的正整数,现在他要从这 n 个正整数之中无重复地选取任意个数,并仅通过加法凑出整数 XXX。求某君有多少种不同的方案来凑出整数 XXX

输入格式

第一行,输入两个整数 n,X(1≤n≤20,1≤X≤2000),X(1≤n≤20,1≤X≤2000)

接下来输入 n 个整数,每个整数不超过 100

输出格式

输出一个整数,表示能凑出 XXX 的方案数。

样例输入

6 6

1 2 3 4 5 6

样例输出

4

 #include
#include
using namespace std;
int main()
{
//    freopen("1.txt","r",stdin);
//    freopen("2.txt","w",stdout);
    int n,m,c,count=0,sum=0;
    int a[20];
    cin>>n>>m;
    int i,j;
    for(i=0;i<20;i++)
        cin>>a[i];
    int ans=0;
    for(i=0;i<(1<    {
        int num=0;
        for(j=0;j        {
            if(i&(1<            {
                num+=a[j];
            }
        }
        if(num==m)
        {
            ans++;
        }
    }
    cout<    return 0;
}


你可能感兴趣的:(计蒜客得到整数X)