light oj 1067Combinations

Description

Given n different objects, you want to take k of them. How many ways to can do it?

For example, say there are 4 items; you want to take 2 of them. So, you can do it 6 ways.

Take 1, 2

Take 1, 3

Take 1, 4

Take 2, 3

Take 2, 4

Take 3, 4

Input

Input starts with an integer T (≤ 2000), denoting the number of test cases.

Each test case contains two integers n (1 ≤ n ≤ 106), k (0 ≤ k ≤ n).

Output

For each case, output the case number and the desired value. Since the result can be very large, you have to print the result modulo 1000003.

Sample Input

3

4 2

5 0

6 4

Sample Output

Case 1: 6

Case 2: 1

Case 3: 15


题意:求组合数C(m,n)%1e6+3,m,n的范围为1e6

这题要用到费马小定理求逆元,详情可参考:http://www.cnblogs.com/16er/p/5159396.html,知道求逆元的方法就可以用快速幂算出来了,因为数据范围不算不太可以用卢卡斯定理求出,卢卡斯定理详情课参考:http://blog.csdn.net/pi9nc/article/details/9615359




Combinations 
#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cstring>
#include<string>
#include<cmath>
#include<set>
#include<map>
#include<stack>
#include<queue>
#include<vector>

using namespace std;

typedef long long ll;

#define sf scanf
#define pf printf
#define mem(i,a) memset(i,a,sizeof i)
#define for0(i,a) for(int (i)=0;(i)<(a);(i)++)
#define for1(i,a) for(int (i)=1;(i)<=(a);(i)++)

const int Max=1e6+3;
ll fac[Max+1],m,n,T;

ll quick(ll a,ll b)//快速幂
{
    ll ans=1;
    while(b)
    {
        if(b&1)
            ans=ans*a%Max;
        b>>=1;
        a=a*a%Max;
    }
    return ans;
}

void fact()//阶乘打表
{
    fac[0]=1;
    for(int i=1;i<=Max;i++)
    {
        fac[i]=fac[i-1]*i%Max;
    }
}

ll Lucas(ll m,ll n)//卢卡斯定理
{
    ll ans=1;
    while(m&&n)
    {
        ll a=m%Max,b=n%Max;
        if(a<b)
            return 0;
        ans=((ans*fac[a]%Max)*(quick(fac[b]*fac[a-b]%Max,Max-2)))%Max;
        m/=Max;
        n/=Max;
    }
    return ans;
}

int main()
{
    fact();
    sf("%I64d",&T);
    for1(i,T)
    {
        sf("%lld%lld",&m,&n);
        pf("Case %d: %lld\n",i,Lucas(m,n));
    }
    return 0;
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值