week3作业A-选数问题

题目:
Given n positive numbers, ZJM can select exactly K of them that sums to S. Now ZJM wonders how many ways to get it!

input
The first line, an integer T <= 100, indicates the number of test cases. For each case, there are two lines. The first line, three integers indicate n, K and S. The second line, n integers indicate the positive numbers.

output
For each case, an integer indicate the answer in a independent line.

样例
Input
1
10 3 10
1 2 3 4 5 6 7 8 9 10
Output
4

题目思路:
就是一个带有剪枝的枚举,通过递归,参数为当前选择的数i,点的个数k,和s。对于每一个数i都有选择该数和不选择两种情况,若是选择该数那么k-1,s-value[i]进入下一次递归,若是不选择那么k,s不变。

代码

#include<iostream>
using namespace std;
int count=0;
int n;
int *value;
void solve(int i,int k,int s)
{
   if(k==0&&s==0)
   {
   	count++;//k=0表示数已经选完,s=0表示符合条件,方案数目++
   	return;
   }
   else if(k==0||s<=0||i==n) return;//表示这种选数方案不符合
   solve(i+1,k,s);//选择数i进入下一次i+1的递归
   solve(i+1,k-1,s-value[i]);//不选择数i
}
int main()
{
	int num;
	cin>>num;
	for(int i=0;i<num;i++)
	{
		count=0;
		int k,s;
		cin>>n>>k>>s;
		value=new int[n];
		for(int j=0;j<n;j++)
		cin>>value[j];
		solve(0,k,s);
		cout<<count<<endl;
	}
	return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值