题目连接:Harvest of Apples

题意:给出一个n和m,求C(0,n)+C(1,n)+.....+C(m,n)。(样例组数为1e5)

题解:首先先把阶乘和逆元预处理出来,这样就可O(1)将C(m,n)求出来了。但这样还是会超时,所以接下来要分块,每隔500个处理出C(1~m,n)的结果。然后还要知道一个性质 C(a,b) = ∑C(t1,x)*C(t2,y)  (x+y<=b),这样我们就可以将给出的m和n分为两个组,其中一个组中元素的个数为500的倍数。然后我们对于另一个组枚举可能的t2然后求和,每次询问最大的操作次数就变成了500次。

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. typedef long long LL;
  4. const LL mod = 1e9 + ;
  5. typedef pair<int,int> P;
  6. const int MAX_N = 1e5+;
  7. int N,M,T,S;
  8. LL Jc[MAX_N];
  9. LL ni_[MAX_N];
  10. LL tran[][MAX_N];
  11. LL tr[][];
  12. //费马小定理求逆元
  13. LL pow(LL a, LL n, LL p) //快速幂 a^n % p
  14. {
  15. LL ans = ;
  16. while(n)
  17. {
  18. if(n & ) ans = ans * a % p;
  19. a = a * a % p;
  20. n >>= ;
  21. }
  22. return ans;
  23. }
  24.  
  25. LL niYuan(LL a, LL b) //费马小定理求逆元
  26. {
  27. return pow(a, b - , b);
  28. }
  29.  
  30. void calJc() //求maxn以内的数的阶乘
  31. {
  32. Jc[] = Jc[] = ;
  33. for(LL i = ; i < MAX_N; i++)
  34. Jc[i] = Jc[i - ] * i % mod;
  35. }
  36. void calni(){
  37. for(int i=;i<MAX_N;i++){
  38. ni_[i] = niYuan(Jc[i],mod);
  39. }
  40. }
  41.  
  42. LL C(LL a, LL b) //计算C(a, b)
  43. {
  44. return Jc[a] * ni_[b] % mod
  45. * ni_[a-b] % mod;
  46. }
  47.  
  48. void init(){
  49. for(int i=;i<MAX_N/;i++){
  50. for(int j=;j<MAX_N;j++){
  51. tran[i][j] = C(*i,j);
  52. if(j>) tran[i][j] = (tran[i][j] + tran[i][j-])%mod;
  53. }
  54. }
  55.  
  56. for(int i=;i<;i++){
  57. for(int j=;j<;j++){
  58. tr[i][j] = C(i,j);
  59. }
  60. }
  61. }
  62. int main(){
  63. calJc();
  64. calni();
  65. init();
  66. //cout<<"OK"<<endl;
  67. cin>>T;
  68. while(T--){
  69. LL a,b;
  70. scanf("%lld%lld",&a,&b);
  71. LL ans = ;
  72. if(a < ){
  73. for(int i=;i<=b;i++)
  74. ans = (ans + tr[a][i])%mod;
  75. }
  76. else{
  77. LL t1 = a / ;
  78. LL t2 = a - t1*;
  79. for(int i=;i<=min(b,t2);i++){
  80. ans = (ans + tr[t2][i]*tran[t1][min(b - i,t1*)])%mod;
  81. }
  82. }
  83. printf("%lld\n",ans);
  84.  
  85. }
  86. return ;
  87. }

HDU 6333 Harvest of Apples (分块、数论)的更多相关文章

  1. HDU - 6333 Harvest of Apples

    题意: T次询问,每次给出n,m.求sigma(k:0->m)C(n, k). 题解: 用离线莫队来做. 令S(n,m) = sigma(k:0->m)C(n, k). S(n+1, m) ...

  2. HDU 6333.Problem B. Harvest of Apples-组合数C(n,0)到C(n,m)求和-组合数学(逆元)+莫队 ((2018 Multi-University Training Contest 4 1002))

    2018 Multi-University Training Contest 4 6333.Problem B. Harvest of Apples 题意很好懂,就是组合数求和. 官方题解: 我来叨叨 ...

  3. hdu6333 Harvest of Apples 离线+分块+组合数学(求组合数模板)

    Problem B. Harvest of Apples Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 262144/262144 K ...

  4. hdu多校第4场 B Harvest of Apples(莫队)

    Problem B. Harvest of Apples Time Limit: / MS (Java/Others) Memory Limit: / K (Java/Others) Total Su ...

  5. 2018 Multi-University Training Contest 4 Problem B. Harvest of Apples 【莫队+排列组合+逆元预处理技巧】

    任意门:http://acm.hdu.edu.cn/showproblem.php?pid=6333 Problem B. Harvest of Apples Time Limit: 4000/200 ...

  6. Harvest of Apples

    问题 B: Harvest of Apples 时间限制: 1 Sec  内存限制: 128 MB提交: 18  解决: 11[提交] [状态] [讨论版] [命题人:admin] 题目描述 Ther ...

  7. HDU 6333 莫队+组合数

    Problem B. Harvest of Apples Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 262144/262144 K ...

  8. hdu6333 Problem B. Harvest of Apples(组合数+莫队)

    hdu6333 Problem B. Harvest of Apples 题目传送门 题意: 求(0,n)~(m,n)组合数之和 题解: C(n,m)=C(n-1,m-1)+C(n-1,m)    设 ...

  9. Problem B. Harvest of Apples HDU - 6333(莫队)

    Problem Description There are n apples on a tree, numbered from 1 to n.Count the number of ways to p ...

随机推荐

  1. CentOS 7下安装Python3.5

    CentOS 7下安装Python3.5 •安装python3.5可能使用的依赖 yum install openssl-devel bzip2-devel expat-devel gdbm-deve ...

  2. Oracle EBS INV 更新状态

    使用API改变现有物料状态,改成如下:On-Hand, Subinventory, Locator, Lot & Serial.参数使用如下:H, O, S, Z, L.对应如下: 'H' - ...

  3. centOS7中Mariadb数据库安装与基本管理

    一.Mariadb数据库安装 1. 直接yum源安装 yum -y install mariadb mariadb-serversystemctl start mariadb /启动Mariadb服务 ...

  4. iptables实战演练

    iptables禁止 ip 10.10.10.1 访问本地80端口: iptables -t filter -I INPUT -s 10.10.10.1 -p tcp –dport 80 -j DRO ...

  5. Django商城项目笔记No.13用户部分-用户中心个人信息

    首先处理个人信息的显示 邮箱绑定: 首先给用户的模型类里添加一个字段来说明用户的邮箱是否激活 然后数据库迁移 python manage.py makemigrations python manage ...

  6. 实例化list

    List<String> lists = new ArrayList<String>();list.add("123");

  7. 页面元素固定在页面底部的纯css代码(兼容IE6)

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/ ...

  8. ES6标准入门之数值的拓展解说

    ES6提供了二进制和八进制数值的新写法,分别用前缀0b(或0B)和0o(或0O)表示. 0b111110111 === 503                    // true 0o767 === ...

  9. [BeiJing2006]狼抓兔子

    题面 一眼看就是最小割板子题,建图也很直观,注意每一条边建双向边其实不用建4条边,只要反向边的容量和正边相同就行.然后直接跑最大流板子就行.不过此题拿vector存图会MLE……而拿链前存图就能卡过去 ...

  10. docker swarm英文文档学习-10-使用Docker密钥管理敏感数据

    Manage sensitive data with Docker secrets使用Docker secrets管理敏感数据 About secrets 对于Docker Swarm服务来说,sec ...