Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
114786 | 吴宗桦 | 零钱兑换 | C++ | 通过 | 100 | 0 MS | 252 KB | 399 | 2023-12-09 09:27:06 |
#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; }