记录编号 503158 评测结果 AAAAAAAAAA
题目名称 博士的密码 最终得分 100
用户昵称 Gravatar梦那边的美好ET 是否通过 通过
代码语言 C++ 运行时间 0.081 s
提交时间 2018-08-01 12:30:11 内存使用 0.32 MiB
显示代码纯文本
#include<cmath>
#include<cstdio>
#include<algorithm>
#include<cstring>
#include<iostream>
#include<map>
using namespace std;
map<long long,int>bk;
long long n,a[46],ans=0,m,f;
void dfs1(int x,long long k){
	if(x==f){
		bk[k]+=1;
		return;
	}
	dfs1(x+1,k+a[x+1]);
	dfs1(x+1,k);
	return;
}
void dfs2(int x,long long k){
	if(x==n){
		ans+=bk[m-k];
		return;
	}
	dfs2(x+1,k+a[x+1]);
	dfs2(x+1,k);
	return;
}
int main(){
	freopen("password1.in","r",stdin);
	freopen("password1.out","w",stdout);
	cin>>n>>m;
	for(int i=1;i<=n;i++)cin>>a[i];
	if(n==1){
		if(a[1]==m||m==0)cout<<1;
		else cout<<0;
		return 0;
	}
	f=n/2;
	dfs1(0,0);
	dfs2(f,0);
	cout<<ans;
	return 0;
}