博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
codechef : Marbles 题解
阅读量:4543 次
发布时间:2019-06-08

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

版权声明:本文作者靖心,靖空间地址:http://blog.csdn.net/kenden23/,未经本作者同意不得转载。 https://blog.csdn.net/kenden23/article/details/27830457

Rohit dreams he is in a shop with an infinite amount of marbles. He is allowed to select n marbles. There are marbles of k different colors. From each color there are also infinitely many marbles. Rohit wants to have at least one marble of each color, but still there are a lot of possibilities for his selection. In his effort to make a decision he wakes up.

Now he asks you how many possibilities for his selection he would have had.
Assume that marbles of equal color can't be distinguished, and the order of the marbles is irrelevant.

Input

The first line of input contains a number T <= 100 that indicates the number of test cases to follow. Each test case consists of one line containing n and k, where n is the number of marbles Rohit selects and k is the number of different colors of the marbles. You can assume that 1<=k<=n<=1000000.

Output

For each test case print the number of possibilities that Rohit would have had.
You can assume that this number fits into a signed 64 bit integer.

Example

Input:210 1030 7Output:1475020

本题是一题组合数学的题目。

应用到比較高级一点的数学知识。

能够觉得是一题indistinguishable objects to distinguishable boxes 把同样的物体放进不同盒子的问题。

这样应用公式是:C(n, n+k-1) = C(k-1, n+k-1),n代表物体k代表盒子

可是由于须要每一个盒子最少必须放置一个物体,故此减去每一个盒子的这一个球,就得到公式:C(k-1, n+k-1-k)

这样就能够简化为计算一个公式的问题了。

注意: 这里是同样物体放进不同盒子,所以比較简单。注意区分不同物体放进不同盒子中。

#include 
#include
#include
using std::min;class Marbles{ long long C(int n, int k) { long long ans = 1LL; k = min(k, n-k); for (int i = 1; i <= k; i++) { ans *= (n-i+1); ans /= i;//这里肯定是能够除尽的,所以不用推断 } return ans; }public: Marbles() { int T, nsel, kcol; scanf("%d", &T); while (T--) { scanf("%d %d", &nsel, &kcol);//kcol <= nsel if (nsel < kcol) { puts("0"); continue; } int n = nsel + kcol - 1 - kcol; int k = kcol - 1; printf("%lld\n", C(n, k)); } }};

转载于:https://www.cnblogs.com/ldxsuanfa/p/9970688.html

你可能感兴趣的文章
多个tomcat实例运行的配置
查看>>
一种基于 Numpy 的 TF-IDF 实现报告
查看>>
wpf窗口阴影
查看>>
linux内核分析第四周-使用库函数API和C代码中嵌入汇编代码两种方式使用同一个系统调用...
查看>>
Centos 7升级内核
查看>>
Pandas 基本技巧
查看>>
hdu 1264
查看>>
hdu 1273不会的题
查看>>
(转)父子窗体的菜单合并及工具栏合并
查看>>
分页SQL
查看>>
linux系统使用sh文件传参数给matlab程序
查看>>
软工实践原型设计-黄紫仪
查看>>
食用指南
查看>>
CSS3圆角详解(border-radius)
查看>>
Python正则表达式指南
查看>>
前端学习之JavaScript中的 NaN 与 isNaN
查看>>
chrome安装json view插件
查看>>
CSS div 高度满屏
查看>>
页面回发速度由 6 秒减少为 0.6 秒的真实案例!
查看>>
一种实现C++反射功能的想法(一)
查看>>