博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
D.6661 - Equal Sum Sets
阅读量:6232 次
发布时间:2019-06-21

本文共 2162 字,大约阅读时间需要 7 分钟。

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} mean
the same set.
Specifying the number of set elements and their sum to be k and s, respectively, sets satisfying the
conditions are limited. When n = 9, k = 3 and s = 23, {6, 8, 9} is the only such set. There may be
more 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.
Input
The 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 assume
1 ≤ n ≤ 20, 1 ≤ k ≤ 10 and 1 ≤ s ≤ 155.
The end of the input is indicated by a line containing three zeros.
Output
The output for each dataset should be a line containing a single integer that gives the number of the
sets 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 23
9 3 22
10 3 28
16 10 107
20 8 102
20 10 105
20 10 155
3 4 3
4 2 11
0 0 0
Sample Output
1
2
0
20
1542
5448
1
0
0

 

题意:

在1~n 中任意选 k 个数组成 s 。求共有多少种组法。

 

分析:

枚举。普通枚举会超时,N!次

因为n,k,s的范围很小,可以直接用dfs。

 

代码:

1 #include
2 #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 }
View Code

这道题还可以用dp 方法来做,但是还没有学。学了之后再重新补上。

转载于:https://www.cnblogs.com/ttmj865/p/4696644.html

你可能感兴趣的文章
找出数字在已排序数组中出现的次数
查看>>
Linux驱动学习笔记(6)信号量(semaphore)与互斥量(mutex)【转】
查看>>
DotNET企业架构应用实践-系列目录
查看>>
iOS开发-UITextView根据内容自适应高度
查看>>
将两个价格清单放在一行显示
查看>>
asp.net gridview 和 repeater 模板代码示例
查看>>
mdev的基本工作原理【转】
查看>>
[Git] git shortlog 找出最懒的程序员
查看>>
【区块链之技术进阶】扒一扒某乎上面对于区块链的理解(二)
查看>>
LintCode: Sort Colors
查看>>
HDU 5095 Linearization of the kernel functions in SVM(模拟)
查看>>
ASP.NET MVC5+EF6+EasyUI 后台管理系统(63)-WebApi与Unity注入
查看>>
Java 内存查看与分析
查看>>
ASP.NET 中处理页面“回退”的方法
查看>>
关于HTML的总结
查看>>
iOS:多线程同步加锁的简单介绍
查看>>
apache 配置文件时导致启动不了的原因:LoadModule,PHPIniDir
查看>>
8天掌握EF的Code First开发系列之动手写第一个Code First应用
查看>>
所以,奇形态(甚至)线条颜色
查看>>
FLEX程序设计-XML(2)
查看>>