Equal Sum Sets
Let us consider sets of positive integers less than or equal to n. Note that all elements of a set are
different. Also note that the order of elements doesnt matter, that is, both {3, 5, 9} and {5, 9, 3} meanthe same set.Specifying the number of set elements and their sum to be k and s, respectively, sets satisfying theconditions are limited. When n = 9, k = 3 and s = 23, {6, 8, 9} is the only such set. There may bemore than one such set, in general, however. When n = 9, k = 3 and s = 22, both {5, 8, 9} and {6, 7, 9}are possible.You have to write a program that calculates the number of the sets that satisfy the given conditions.InputThe input consists of multiple datasets. The number of datasets does not exceed 100.Each of the datasets has three integers n, k and s in one line, separated by a space. You may assume1 ≤ n ≤ 20, 1 ≤ k ≤ 10 and 1 ≤ s ≤ 155.The end of the input is indicated by a line containing three zeros.OutputThe output for each dataset should be a line containing a single integer that gives the number of thesets that satisfy the conditions. No other characters should appear in the output.You can assume that the number of sets does not exceed 231 − 1.Sample Input
9 3 239 3 2210 3 2816 10 10720 8 10220 10 10520 10 1553 4 34 2 110 0 0Sample Output1202015425448100
题意:
在1~n 中任意选 k 个数组成 s 。求共有多少种组法。
分析:
枚举。普通枚举会超时,N!次
因为n,k,s的范围很小,可以直接用dfs。
代码:
1 #include2 #include 3 using namespace std; 4 5 int n,k,s; 6 int ans; 7 8 void dfs(int num,int kase,int sum) 9 {10 if(kase==k&&sum==s)11 {12 ans++;13 return;14 }15 if(kase>k||sum>s)16 return;17 else18 for(int i=num+1;i<=n;i++)19 dfs(i,kase+1,sum+i);20 return;21 }22 23 int main ()24 {25 while(scanf("%d%d%d",&n,&k,&s)!=EOF)26 {27 if(n==0&&k==0&&s==0)28 break;29 ans=0;30 for(int i=1;i<=n;i++)31 dfs(i,1,i);32 printf("%d\n",ans);33 }34 return 0;35 }
这道题还可以用dp 方法来做,但是还没有学。学了之后再重新补上。