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

HDU 3073 Saving Beans

时间:2015-08-14 13:38:51      阅读:99      评论:0      收藏:0      [点我收藏+]

标签:

Saving Beans

Time Limit: 3000ms
Memory Limit: 32768KB
This problem will be judged on HDU. Original ID: 3037
64-bit integer IO format: %I64d      Java class name: Main
 
Although winter is far away, squirrels have to work day and night to save beans. They need plenty of food to get through those long cold days. After some time the squirrel family thinks that they have to solve a problem. They suppose that they will save beans in n different trees. However, since the food is not sufficient nowadays, they will get no more than m beans. They want to know that how many ways there are to save no more than m beans (they are the same) in n trees.

Now they turn to you for help, you should give them the answer. The result may be extremely huge; you should output the result modulo p, because squirrels can’t recognize large numbers.
 

Input

The first line contains one integer T, means the number of cases.

Then followed T lines, each line contains three integers n, m, p, means that squirrels will save no more than m same beans in n different trees, 1 <= n, m <= 1000000000, 1 < p < 100000 and p is guaranteed to be a prime.
 

Output

You should output the answer modulo p.
 

Sample Input

2
1 2 5
2 1 5

Sample Output

3
3


解题:Lucas 求组合数取模

技术分享
 1 #include <bits/stdc++.h>
 2 using namespace std;
 3 typedef long long LL;
 4 LL F[100010] = {1};
 5 void init(LL mod) {
 6     for(int i = 1; i <= mod; ++i)
 7         F[i] = F[i-1]*i%mod;
 8 }
 9 LL gcd(LL a,LL b,LL &x,LL &y) {
10     if(!b) {
11         x = 1;
12         y = 0;
13         return a;
14     }
15     LL ret = gcd(b,a%b,y,x);
16     y -= x*(a/b);
17     return ret;
18 }
19 LL Inv(LL b,LL mod) {
20     LL x,y,d = gcd(b,mod,x,y);
21     return d == 1?(x%mod + mod)%mod:-1;
22 }
23 LL inv(LL b,LL mod) {
24     if(b == 1) return 1;
25     return inv(mod%b,mod)*(mod-mod/b)%mod;
26 }
27 LL Lucas(LL n,LL m,LL mod) {
28     LL ret = 1;
29     while(n && m) {
30         LL a = n%mod;
31         LL b = m%mod;
32         if(a < b) return 0;
33         ret = ret*F[a]%mod*Inv(F[b]*F[a-b]%mod,mod)%mod;
34         n /= mod;
35         m /= mod;
36     }
37     return ret;
38 }
39 int main() {
40     int kase,n,m,mod;
41     scanf("%d",&kase);
42     while(kase--) {
43         scanf("%d%d%d",&n,&m,&mod);
44         init(mod);
45         printf("%I64d\n",Lucas(n+m,n,mod));
46     }
47     return 0;
48 }
View Code

 

HDU 3073 Saving Beans

标签:

原文地址:http://www.cnblogs.com/crackpotisback/p/4729400.html

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