SPOJ-MARBLES Marbles【组合】

Marbles

  SPOJ - MARBLES 


Hänschen 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. Hänschen 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 possibilites 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 Hänschen 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 Hänschen would have had. You can assume that this number fits into a signed 64 bit integer.

Example

Input:
2
10 10
30 7

Output:
1
475020

问题链接SPOJ-MARBLES Marbles

问题简述:(略)

问题分析

  组合计算问题,不多解释。

  n个球分配k种颜色,相当与n个球之间n-1个空隙插上隔板,答案为C(n-1,k-1)。

程序说明:(略)

题记:(略)

参考链接:(略)


AC的C++语言程序如下:

/* SPOJ-MARBLES Marbles */

#include <bits/stdc++.h>

using namespace std;

long long C(int n, int k)
{
    if(k > n - k)
        k = n - k;

    long long ans = 1;
    for(int i=0; i<k; i++)
        ans = ans * (n - i) / (i + 1);

    return ans;
}

int main()
{
    int t;

    scanf("%d", &t);
    while(t--) {
        int n, k;

        scanf("%d%d", &n, &k);

        printf("%lld\n", C(n - 1, k - 1));
    }

    return 0;
}







评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值