比赛 |
NOIP水题争霸赛 |
评测结果 |
AAAAAATTTT |
题目名称 |
博士的密码 |
最终得分 |
60 |
用户昵称 |
梦那边的美好ET |
运行时间 |
4.155 s |
代码语言 |
C++ |
内存使用 |
0.22 MiB |
提交时间 |
2018-02-11 21:18:33 |
显示代码纯文本
#include<cstdio>
#include<iostream>
using namespace std;
int n;
long long a[41]={0},key;
int sum=0;
void bfs(int x,int y)
{
if(x==n&&y==key)
{
sum+=1;
return;
}
if(x==n)
{
return;
}
bfs(x+1,y);
bfs(x+1,y+a[x+1]);
}
int main()
{
freopen("password1.in","r",stdin);
freopen("password1.out","w",stdout);
cin>>n>>key;
for(int i=1;i<=n;i++)
{
cin>>a[i];
}
bfs(1,0);
bfs(1,a[1]);
cout<<sum;
return 0;
}