Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
114775 | 吴宗桦 | 完全背包问题 | C++ | 内存超限 | 0 | 1000 MS | 131316 KB | 399 | 2023-12-09 09:11:42 |
#include<iostream> #include<algorithm> #include<cstring> using namespace std; int a,b,c,d[5005],e=0; void aa(int x,int z) { int y; for(y=z;y<=a;y++) { if(x+d[y]==b) { e++; return ; } if(x+d[y]<b) aa(x+d[y],y); if(x+d[y]>b) return ; } } int main() { cin>>a>>b; for(c=1;c<=a;c++) cin>>d[c]; sort(d+1,d+a+1); aa(0,1); cout<<e; return 0; }