Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
114765 吴宗桦 组合总和 C++ 内存超限 50 84 MS 131320 KB 370 2023-12-09 09:07:55

Tests(1/2):


#include<iostream> #include<algorithm> using namespace std; int a,b,c,d[5005],e=0; void aa(int x) { int y; for(y=1;y<=a;y++) { if(x+d[y]==b) { e++; return ; } if(x+d[y]<b) aa(x+d[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); cout<<e; return 0; }


测评信息: