Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
114741 | 吴宗桦 | 零钱兑换 | C++ | 解答错误 | 75 | 0 MS | 260 KB | 400 | 2023-12-09 08:49:53 |
#include<iostream> #include <algorithm> #include<cstring> using namespace std; int a,b,c,d[1005],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; }