转自:http://blog.csdn.net/chaiwenjun000/article/details/52589457

计从1到n的素数个数

两个模板

时间复杂度O(n^(3/4))

  1. #include <bits/stdc++.h>
  2. #define ll long long
  3. using namespace std;
  4. ll f[],g[],n;
  5. void init(){
  6. ll i,j,m;
  7. for(m=;m*m<=n;++m)f[m]=n/m-;
  8. for(i=;i<=m;++i)g[i]=i-;
  9. for(i=;i<=m;++i){
  10. if(g[i]==g[i-])continue;
  11. for(j=;j<=min(m-,n/i/i);++j){
  12. if(i*j<m)f[j]-=f[i*j]-g[i-];
  13. else f[j]-=g[n/i/j]-g[i-];
  14. }
  15. for(j=m;j>=i*i;--j)g[j]-=g[j/i]-g[i-];
  16. }
  17. }
  18. int main(){
  19. while(scanf("%I64d",&n)!=EOF){
  20. init();
  21. cout<<f[]<<endl;
  22. }
  23. return ;
  24. }

第二个 时间复杂度O(n^(2/3))

  1. //Meisell-Lehmer
  2. //G++ 218ms 43252k
  3. #include<cstdio>
  4. #include<cmath>
  5. using namespace std;
  6. #define LL long long
  7. const int N = 5e6 + ;
  8. bool np[N];
  9. int prime[N], pi[N];
  10. int getprime()
  11. {
  12. int cnt = ;
  13. np[] = np[] = true;
  14. pi[] = pi[] = ;
  15. for(int i = ; i < N; ++i)
  16. {
  17. if(!np[i]) prime[++cnt] = i;
  18. pi[i] = cnt;
  19. for(int j = ; j <= cnt && i * prime[j] < N; ++j)
  20. {
  21. np[i * prime[j]] = true;
  22. if(i % prime[j] == ) break;
  23. }
  24. }
  25. return cnt;
  26. }
  27. const int M = ;
  28. const int PM = * * * * * * ;
  29. int phi[PM + ][M + ], sz[M + ];
  30. void init()
  31. {
  32. getprime();
  33. sz[] = ;
  34. for(int i = ; i <= PM; ++i) phi[i][] = i;
  35. for(int i = ; i <= M; ++i)
  36. {
  37. sz[i] = prime[i] * sz[i - ];
  38. for(int j = ; j <= PM; ++j) phi[j][i] = phi[j][i - ] - phi[j / prime[i]][i - ];
  39. }
  40. }
  41. int sqrt2(LL x)
  42. {
  43. LL r = (LL)sqrt(x - 0.1);
  44. while(r * r <= x) ++r;
  45. return int(r - );
  46. }
  47. int sqrt3(LL x)
  48. {
  49. LL r = (LL)cbrt(x - 0.1);
  50. while(r * r * r <= x) ++r;
  51. return int(r - );
  52. }
  53. LL getphi(LL x, int s)
  54. {
  55. if(s == ) return x;
  56. if(s <= M) return phi[x % sz[s]][s] + (x / sz[s]) * phi[sz[s]][s];
  57. if(x <= prime[s]*prime[s]) return pi[x] - s + ;
  58. if(x <= prime[s]*prime[s]*prime[s] && x < N)
  59. {
  60. int s2x = pi[sqrt2(x)];
  61. LL ans = pi[x] - (s2x + s - ) * (s2x - s + ) / ;
  62. for(int i = s + ; i <= s2x; ++i) ans += pi[x / prime[i]];
  63. return ans;
  64. }
  65. return getphi(x, s - ) - getphi(x / prime[s], s - );
  66. }
  67. LL getpi(LL x)
  68. {
  69. if(x < N) return pi[x];
  70. LL ans = getphi(x, pi[sqrt3(x)]) + pi[sqrt3(x)] - ;
  71. for(int i = pi[sqrt3(x)] + , ed = pi[sqrt2(x)]; i <= ed; ++i) ans -= getpi(x / prime[i]) - i + ;
  72. return ans;
  73. }
  74. LL lehmer_pi(LL x)
  75. {
  76. if(x < N) return pi[x];
  77. int a = (int)lehmer_pi(sqrt2(sqrt2(x)));
  78. int b = (int)lehmer_pi(sqrt2(x));
  79. int c = (int)lehmer_pi(sqrt3(x));
  80. LL sum = getphi(x, a) +(LL)(b + a - ) * (b - a + ) / ;
  81. for (int i = a + ; i <= b; i++)
  82. {
  83. LL w = x / prime[i];
  84. sum -= lehmer_pi(w);
  85. if (i > c) continue;
  86. LL lim = lehmer_pi(sqrt2(w));
  87. for (int j = i; j <= lim; j++) sum -= lehmer_pi(w / prime[j]) - (j - );
  88. }
  89. return sum;
  90. }
  91. int main()
  92. {
  93. init();
  94. LL n;
  95. while(~scanf("%lld",&n))
  96. {
  97. printf("%lld\n",lehmer_pi(n));
  98. }
  99. return ;
  100. }

hdu 5901 Count primes 素数计数模板的更多相关文章

  1. HDU 5901 Count primes( Meisell-Lehmer算法模板 )

    链接:传送门 题意:计算 [ 1 , n ] 之间素数的个数,(1 <= n <= 1e11) 思路:Meisell-Lehmer算法是计算超大范围内素数个数的一种算法,原理并不明白,由于 ...

  2. HDU 5901 Count primes 论文题

    Count primes 题目连接: http://acm.split.hdu.edu.cn/showproblem.php?pid=5901 Description Easy question! C ...

  3. hdu 5901 Count primes (meisell-Lehmer)

    Count primes Time Limit: 12000/6000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)Tot ...

  4. HDU 5901 Count primes 大素数计数

    题意:计算1~N间素数的个数(N<=1e11) 题解:题目要求很简单,作为论文题,模板有两种 \(O(n^\frac{3}{4} )\),另一种lehmer\(O(n^\frac{2}{3})\ ...

  5. [素数个数模板] HDU 5901 Count primes

    #include<cstdio> #include<cmath> using namespace std; #define LL long long ; bool np[N]; ...

  6. HDU 5901 Count primes (1e11内的素数个数) -2016 ICPC沈阳赛区网络赛

    题目链接 题意:求[1,n]有多少个素数,1<=n<=10^11.时限为6000ms. 官方题解:一个模板题, 具体方法参考wiki或者Four Divisors. 题解:给出两种代码. ...

  7. HDU 5901 Count primes (模板题)

    题意:给求 1 - n 区间内的素数个数,n <= 1e11. 析:模板题. 代码如下: #pragma comment(linker, "/STACK:1024000000,1024 ...

  8. 求1-1e11内的素数个数(HDU 5901 Count primes )

    参考链接:https://blog.csdn.net/Dylan_Frank/article/details/54428481 #include <bits/stdc++.h> #defi ...

  9. HDU 5901 Count primes (2016 acm 沈阳网络赛)

    原题地址:http://acm.hdu.edu.cn/showproblem.php?pid=5901 题意:输入n,输出n以内质数个数 模板题,模板我看不懂,只是存代码用. 官方题解链接:https ...

随机推荐

  1. [置顶] 学习JDK源码:可进一步优化的代码

    1.参数化类型的构造函数比较啰嗦 new HashMap<String, List<String>>() 如果你调用参数化类的构造函数,那么很不幸,你必须要指定类型参数,即便上 ...

  2. cocos2d-x 通过socket实现http下载及断点续传的实现

    cocos2d-x 通过socket实现http下载及断点续传的实现 代码未经进一步的整理,可能比较混乱. 首先,2dx的socket库由BSSocket组成.可跨平台,在windows上已验证. 1 ...

  3. EntityFramework5提供的迁移工具

    目录 背景之前是如何做的?EntityFramework5提供了更好的选择备注 背景返回目录 刚毕业做项目的时候,没有用“迁移”这个概念,系统发布和更新的过程让人非常痛苦,在学习 Ruby On Ra ...

  4. 【c++】指针参数是如何传递内存的

    [c++]指针参数是如何传递内存的   如果函数的参数是一个指针,不要指望用该指针去动态申请内存.如下: void GetMemory(char *p, int num) { p = (char *) ...

  5. 用django创建一个简单的sns

    用django创建一个简单的sns 1.首先创建一个工程newsns django-admin.py startproject newsns 在工程目录下新建一个文件夹templates,在该文件夹下 ...

  6. TOGAF架构开发方法(ADM)之迁移规划阶段

    TOGAF架构开发方法(ADM)之迁移规划阶段 1.8 迁移规划(Migration Planning) 企业架构开发方法各阶段——迁移规划 1.8.1 目标 本阶段的目标是: 确保实施和迁移规划与企 ...

  7. [转]Python tips: 什么是*args和**kwargs?

    Python tips: 什么是*args和**kwargs? 原文地址:http://www.cnblogs.com/fengmk2/archive/2008/04/21/1163766.html ...

  8. 软件设计师.NET认证考试测试卷(试题及答案)

    软件设计师.NET认证考试测试卷 注意事项:用蓝.黑色钢笔答题.保持卷面整洁. 得分 阅卷人 一.单项选择(40分,每小题1分) 1.以下标识符中不全是关键字的是(D  ) A.case for in ...

  9. 高频交易算法研发心得--RSI指标及应用

    高频交易算法研发心得--RSI指标及应用 前面文章中我们提到了MA均线(包括EMA,SMA).MACD以及SAR指标,这三类指标存在一个共同特点,即:从固定周期的价格作为判读的指导思想,并将价格进行平 ...

  10. Perf 简介

    Perf 是用来进行软件性能分析的工具. 通过它,应用程序可以利用 PMU,tracepoint 和内核中的特殊计数器来进行性能统计.它不但可以分析指定应用程序的性能问题 (per thread),也 ...