【Lightoj 1067】+ 逆元 + 预处理

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
Output for Sample Input
3
4 2
5 0
6 4
Case 1: 6
Case 2: 1
Case 3: 15

题意:数学组合问题改编成费马小定理—>逆元组合 C(n,m) = n! / (m! * (n - m)! )
逆元:由费马小定理a ^ (p-1) = 1 (%p),两边同时除去a——a ^ (p-2) = a^-1 (%p),得a的逆元a^-1 = a ^ (p-2)。
数据不大,可以预先打个N的阶层表和逆元表

关于逆元,不了解的同学戳这里 :http://blog.csdn.net/WYK1823376647/article/category/6355998

#include<cstdio>
#include<algorithm>
using namespace std;
const int mod = 1000003;
const int KL = 1000011;
long long pa[KL],ma[KL];
int KSM(int a,int b,int kl) // 快速幂
{
    long long ans = 1,cut = a % kl;
    while(b){
        if(b & 1)
            ans = ans * cut % kl;
        cut = cut * cut % kl;
        b >>= 1;
    }
    return ans;
}
void init() // 预处理
{
    pa[0] = 1;
    for(int i = 1 ; i < mod ; i++) // 打个 N 的阶层表 
        pa[i] = i * pa[i - 1] % mod;
    ma[0] = ma[1] = 1;
    for(int i = 2 ; i < mod ; i++)
        ma[i] = KSM(pa[i],mod - 2 ,mod); // 打个 N 的逆元表
}
int main()
{
    int T,nl = 0,N,M,pl;
    scanf("%d",&T);
    init();
    while(T--)
    {
        scanf("%d%d",&N,&M);
        pl = N - M;
        long long ans = pa[N];
        long long sum = ma[M];
        long long cut = ma[pl];
        ans = (ans * sum % mod) * cut % mod;
        printf("Case %d: %lld\n",++nl,ans);
    }
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值