比赛 |
NOIP水题争霸赛 |
评测结果 |
WWWWWWWWWW |
题目名称 |
博士的密码 |
最终得分 |
0 |
用户昵称 |
crystal |
运行时间 |
0.006 s |
代码语言 |
C++ |
内存使用 |
0.26 MiB |
提交时间 |
2018-02-11 21:05:03 |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cstdlib>
using namespace std;
typedef long long ll;
template <class E>inline void read(E &e){
e=0;char c=getchar();bool eh=0;
while(c>'9'||c<'0'){if(c=='-')eh=1;c=getchar();}
while(c>='0'&&c<='9'){e=e*10+c-48;c=getchar();}
if(eh) e=-e;
}
ll n,key;
ll a[500];
ll ans=0;
ll hou[500];
void dfs(ll sum,ll k){//还没加第k个
if(k==n+1){
if(sum==key) ans++;
return;
}
if(sum+hou[k]<key) return;
if(sum>key) return;
dfs(sum,k+1);
dfs(sum+a[k],k+1);
}
int main(){
freopen("password1.in","r",stdin);
freopen("password1.out","w",stdout);
read(n);read(key);
for(ll i=1;i<=n;++i)
read(a[i]);
for(int i=n;i>=1;--i)
hou[i]=hou[i+1]+a[i];
dfs(0,1);
printf("%lld\n",ans);
return 0;
}