比赛 |
NOIP水题争霸赛 |
评测结果 |
WWWWWWWTTW |
题目名称 |
博士的密码 |
最终得分 |
0 |
用户昵称 |
Molotov |
运行时间 |
2.002 s |
代码语言 |
C++ |
内存使用 |
0.28 MiB |
提交时间 |
2018-02-11 21:41:46 |
显示代码纯文本
#include<cstdio>
#include<cstring>
#include<vector>
#include<stack>
#include<cctype>
#include<cmath>
#include<algorithm>
#include<iostream>
#include<queue>
#include<time.h>
#define ll long long
using namespace std;
/*maaaarrrrrx*/
int n,key,a[45];
int cnt=0;
void solve(int i,int sum)
{
if(i>n)
{
if(sum==key) cnt++;
return;
}
for(int j=1;j>=0;j--)
solve(i+1,sum+j*a[i]);
}
int main()
{
// freopen("i.txt","r",stdin);
freopen("password1.in","r",stdin);
freopen("password1.out","w",stdout);
scanf("%d%d",&n,&key);
for(int i=1;i<=n;i++) scanf("%d",&a[i]);
solve(1,0);
cout<<cnt<<endl;
return 0;
}