标签:des style blog http color strong
Time Limit: 1000MS | Memory Limit: 32768KB | 64bit IO Format: %I64d & %I64u |
Description
Input
Output
Sample Input
2 5 2 3 5 2 61
Sample Output
1 10
1 #include <iostream> 2 #include <stdio.h> 3 #include <string.h> 4 using namespace std; 5 #define ll long long 6 ll power(ll x,ll y) 7 { 8 ll p=y+2,ans=1; 9 while(y) 10 { 11 if(y&1) 12 ans=(ans*x)%p; 13 x=(x*x)%p; 14 y>>=1; 15 } 16 return ans; 17 } 18 ll c(ll n,ll m,ll p) 19 { 20 if(m>n)return 0; 21 ll size=min(m,n-m),i,ans=1; 22 for(i=1;i<=size;i++) 23 ans=ans*((n-i+1)*power(i,p-2)%p)%p; 24 return ans; 25 } 26 ll solve(ll n,ll m,ll p) 27 { 28 if(m==0)return 1; 29 return (c(n%p,m%p,p)*solve(n/p,m/p,p))%p; 30 } 31 int main() 32 { 33 int t; 34 scanf("%d",&t); 35 ll n,m,p; 36 while(t--) 37 { 38 scanf("%I64d%I64d%I64d",&n,&m,&p); 39 printf("%I64d\n",solve(n,m,p)); 40 } 41 }
这个问题有个叫做Lucas的定理,定理描述是,如果
那么得到
这样然后分别求,采用逆元计算即可。
标签:des style blog http color strong
原文地址:http://www.cnblogs.com/ERKE/p/3854470.html