Problem Description
There are n apples on a tree, numbered from 1 to n.
Count the number of ways to pick at most m apples.
 
Input
The first line of the input contains an integer T (1≤T≤105) denoting the number of test cases.
Each test case consists of one line with two integers n,m (1≤m≤n≤105).
 
Output
For each test case, print an integer representing the number of ways modulo 109+7.
 
Sample Input
2
5 2
1000 500
 
Sample Output
16
924129523
 
Source
 

解析:

   

  

  1. #include <iostream>
  2. #include <cstdio>
  3. #include <sstream>
  4. #include <cstring>
  5. #include <map>
  6. #include <cctype>
  7. #include <set>
  8. #include <vector>
  9. #include <stack>
  10. #include <queue>
  11. #include <algorithm>
  12. #include <cmath>
  13. #include <bitset>
  14. #define rap(i, a, n) for(int i=a; i<=n; i++)
  15. #define rep(i, a, n) for(int i=a; i<n; i++)
  16. #define lap(i, a, n) for(int i=n; i>=a; i--)
  17. #define lep(i, a, n) for(int i=n; i>a; i--)
  18. #define rd(a) scanf("%d", &a)
  19. #define rlld(a) scanf("%lld", &a)
  20. #define rc(a) scanf("%c", &a)
  21. #define rs(a) scanf("%s", a)
  22. #define pd(a) printf("%d\n", a);
  23. #define plld(a) printf("%lld\n", a);
  24. #define pc(a) printf("%c\n", a);
  25. #define ps(a) printf("%s\n", a);
  26. #define LL long long
  27. #define ULL unsigned long long
  28. #define Pair pair<int, int>
  29. #define mem(a, b) memset(a, b, sizeof(a))
  30. #define _ ios_base::sync_with_stdio(0),cin.tie(0)
  31. //freopen("1.txt", "r", stdin);
  32. using namespace std;
  33. const int maxn = 1e5 + , INF = 0x7fffffff, LL_INF = 0x7fffffffffffffff;
  34. const int MOD = 1e9+;
  35. LL n, m, ans;
  36. LL up[maxn], down[maxn], pos[maxn], inc[maxn], inv[maxn];
  37.  
  38. struct node
  39. {
  40. LL l, r;
  41. int id;
  42. }Node[maxn];
  43.  
  44. bool cmp(node a, node b)
  45. {
  46. return pos[a.l] == pos[b.l] ? (a.r < b.r) : (a.l < b.l);
  47. }
  48.  
  49. LL qp(LL a, LL b)
  50. {
  51. LL res = ;
  52. while(b)
  53. {
  54. if(b & ) res = res * a % MOD;
  55. a = a * a % MOD;
  56. b >>= ;
  57. }
  58. return res;
  59. }
  60.  
  61. void init()
  62. {
  63. up[] = ;
  64. down[] = ;
  65. for(int i=; i<maxn; i++)
  66. {
  67. up[i] = up[i-] * i % MOD;
  68. down[i] = qp(up[i], MOD - ) % MOD;
  69. }
  70. }
  71.  
  72. LL C(LL n, LL m)
  73. {
  74. if(n < m) return ;
  75. return up[n] * down[n-m] % MOD * down[m] % MOD;
  76. }
  77.  
  78. int main()
  79. {
  80. init();
  81. int block = sqrt();
  82. for(int i=; i<=; i++)
  83. pos[i] = (i-)/block + ;
  84. int T;
  85. rd(T);
  86. for(int i=; i<=T; i++)
  87. {
  88. rlld(Node[i].r), rlld(Node[i].l);
  89. Node[i].id = i;
  90. }
  91. sort(Node + , Node + T + , cmp);
  92. ans = ;
  93. int tmp = qp(, MOD - );
  94. for(int i=, l=, r=; i<=T; i++)
  95. {
  96. for(; r < Node[i].r; r++)
  97. ans = ( * ans - C(r, l) + MOD) % MOD;
  98. for(; r > Node[i].r; r--)
  99. ans = (ans + C(r-, l)) * tmp % MOD;
  100. for(; l < Node[i].l; l++)
  101. ans = (ans + C(r, l+)) % MOD;
  102. for(; l > Node[i].l; l--)
  103. ans = (ans - C(r, l) + MOD) % MOD;
  104. if(Node[i].l == Node[i].r)
  105. {
  106. inc[Node[i].id] = ;
  107. }
  108.  
  109. inc[Node[i].id] = ans;
  110. }
  111. for(int i=; i<=T; i++)
  112. printf("%lld\n", inc[i]);
  113.  
  114. return ;
  115. }

Problem B. Harvest of Apples HDU - 6333(莫队)的更多相关文章

  1. 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)    设 ...

  2. HDU 6333 莫队+组合数

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

  3. Harvest of Apples (HDU多校第四场 B) (HDU 6333 ) 莫队 + 组合数 + 逆元

    题意大致是有n个苹果,问你最多拿走m个苹果有多少种拿法.题目非常简单,就是求C(n,0)+...+C(n,m)的组合数的和,但是询问足足有1e5个,然后n,m都是1e5的范围,直接暴力的话肯定时间炸到 ...

  4. 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 ...

  5. 【魔改】莫队算法+组合数公式 杭电多校赛4 Problem B. Harvest of Apples

    http://acm.hdu.edu.cn/showproblem.php?pid=6333 莫队算法是一个离线区间分块瞎搞算法,只要满足:1.离线  2.可以O(1)从区间(L,R)更新到(L±1, ...

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

    There are nn apples on a tree, numbered from 11 to nn. Count the number of ways to pick at most mm a ...

  7. HDU - 6333 Problem B. Harvest of Apples (莫队+组合数学)

    题意:计算C(n,0)到C(n,m)的和,T(T<=1e5)组数据. 分析:预处理出阶乘和其逆元.但如果每次O(m)累加,那么会超时. 定义 S(n, m) = sigma(C(n,m)).有公 ...

  8. Problem B. Harvest of Apples 莫队求组合数前缀和

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

  9. Problem B. Harvest of Apples(杭电2018年多校+组合数+逆元+莫队)

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=6333 题目: 题意:求C(n,0)+C(n,1)+……+C(n,m)的值. 思路:由于t和n数值范围太 ...

随机推荐

  1. [02] SpringBoot的项目属性配置

    1.application.properties 简述 配置文件的使用和调整都非常方便,直接在项目默认的classpath下的application.properties文件中做调整即可.例如Spri ...

  2. Django学习篇(第二部)

    4.Django pip3 install django C:\Python35\Scripts # 创建Django工程 django-admin startproject [工程名称] mysit ...

  3. IDM 破解

    IDM确实好用,现贴出破解教程. 感谢原文作者:https://jingyan.baidu.com/article/11c17a2c2bd026f447e39d5a.html

  4. Luogu3676 小清新数据结构题 动态点分治

    传送门 换根类型的统计问题动态点分治都是很好做的. 设所有点的点权和为$sum$ 首先,我们先不考虑求$\sum\limits_i s_i^2$,先考虑如何在换根的情况下求$\sum\limits_i ...

  5. LINUX第三次实践:程序破解

    LINUX第三次实践:程序破解 标签(空格分隔): 20135328陈都 一.掌握NOP.JNE.JE.JMP.CMP汇编指令的机器码 NOP:NOP指令即"空指令".执行到NOP ...

  6. 《蹭课神器》Beta版使用说明

    相比 Alpha 版,我对主界面进行了优化,使主界面更加简洁 同时数据库增加了一个表,里面存放的是课程的详细信息

  7. jquery打印页面(jquery.jqprint)

    使用jquery进行打印时,所需js包:jquery-1.4.4.min.js.jquery.jqprint-0.3.js 但如果使用高版本的jquery(jquery-1.9.1.min.js)时, ...

  8. 第三个spring冲刺第9天

    今天是第三阶段冲刺的最后第二天了,我们该实现的功能基本已经全部实现了,有填空的,选择题的,还有计时的,目前就是在查BUG,看看有哪些地方有BUG需要修改,以下截图是我们团队所做的功能截图: 首页: 填 ...

  9. PHP使用MySQL实现消息队列

    消息队列常用在流量削峰(秒杀场景),异步通信等地方. 大体的结构如下: 类似于消费者和生产者的关系,首先生产者在消息队列未满的时候,才将生产的产品放进消息队列中:消费者在消息队列不为空的时候,才从消息 ...

  10. JavaScript的类、对象、原型、继承、引用

    以CSS为例,有一种为所有class为"xxxx"的元素添加样式(外联样式),那么所有class为xxx的元素样式就会改变,在css中像下面这么写: <html> &l ...