码迷,mamicode.com
首页 > 其他好文 > 详细

BZOJ 2982 combination

时间:2017-09-08 20:37:39      阅读:244      评论:0      收藏:0      [点我收藏+]

标签:efi   logs   快速幂运算   using   否则   space   oid   class   a*   

Lucas定理模板题目

#include <iostream>
#include <string.h>
#include <cmath>
#define ll long long
using namespace std;
const int maxn=10000007;
ll n,m,p;
ll fac[maxn];
 
void getfac(ll p)//预处理阶层
{
    fac[0]=1;
    for(int i=1;i<=p;i++)
        fac[i]=fac[i-1]*i%p;
}
 
ll power(ll a,ll n,ll p)//快速幂运算
{
    ll ans=1;
    while(n)
    {
        if(n&1)
            ans=ans*a%p;
        a=a*a%p;
        n/=2;
    }
    return ans;
}
 
ll lucas(ll n,ll m,ll p)
{
    ll ans=1;
    while(n&&m)
    {
        ll a=n%p;
        ll b=m%p;
        if(a<b) return 0;
        ans=(ans*fac[a]*power(fac[b]*fac[a-b]%p,p-2,p))%p;//  fac[b]*fac[a-b]后面别忘了%p,否则WA
        n/=p;
        m/=p;
    }
    return ans;
}
 
 
int main()
{
    int t;cin>>t;
    getfac(10007);
    while(t--)
    {
        cin>>n>>m;
        cout<<lucas(n,m,10007)<<endl;
    }
    return 0;
}

 

BZOJ 2982 combination

标签:efi   logs   快速幂运算   using   否则   space   oid   class   a*   

原文地址:http://www.cnblogs.com/OIerLYF/p/7496031.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!