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

bzoj2982: combination

时间:2016-12-29 07:21:03      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:pre   nbsp   cat   close   efi   bit   type   rac   name   

Lucas定理模版题

T行,每行一个数,为C(n, m) mod 10007的答案。

 

技术分享
 1 #include<bits/stdc++.h>
 2 #define rep(i,l,r) for(int i=l;i<=r;++i)
 3 using namespace std;
 4 typedef long long ll;
 5 const ll p=10007;
 6 ll n,m,T;
 7 ll Pow(int x,int y){
 8     if(!y)return 1;
 9     ll t=Pow(x,y/2)%p; (t*=t)%=p;
10     if(y&1)return t*x;else return t;
11 }
12 ll c(ll n,ll m){
13     if(n<m)return 0;
14     ll ans=1;
15     rep(i,1,m){
16         ans=ans*(((n-m+i)%p)*Pow(i,p-2)%p)%p;  
17     }
18     return ans;
19 }
20 ll lucas(ll n,ll m){
21     if(!m)return 1;
22     return lucas(n/p,m/p)*c(n%p,m%p)%p;
23 }
24 int main(){
25     cin>>T;
26     while(T--){
27         cin>>n>>m;
28         cout<<lucas(n,m)<<endl;
29     }
30 }
View Code

 

bzoj2982: combination

标签:pre   nbsp   cat   close   efi   bit   type   rac   name   

原文地址:http://www.cnblogs.com/Bloodline/p/6230947.html

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