我是靠谱客的博主 追寻金针菇,最近开发中收集的这篇文章主要介绍Prime Number Aizu - 0009(素数筛)题意:题目:分析:AC模板:,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

题意:

给一个数n,问1~n内有多少个素数

题目:

Write a program which reads an integer n and prints the number of prime numbers which are less than or equal to n. A prime number is a natural number which has exactly two distinct natural number divisors: 1 and itself. For example, the first four prime numbers are: 2, 3, 5 and 7.

Input

Input consists of several datasets. Each dataset has an integer n (1 ≤ n ≤ 999,999) in a line.

The number of datasets is less than or equal to 30.

Output

For each dataset, prints the number of prime numbers.

Sample Input

10
3
11

Output for the Sample Input

4
2
5

分析:

打个素数筛就行

AC模板:

#include<stdio.h>
#include<string.h>
#include<map>
#include<algorithm>
using namespace std;
const int M=1e6+10;
int n;
int dp[M],book[M];
map<int,int>mp;
void init()
{

        for(int i=2; i<M; i++)
        {
            if(!book[i])
            {
                mp[i]=1;
                for(int j=i; j<M; j+=i)
                    book[j]=1;
            }
        }
        for(int i=1; i<M; i++)
        {
            dp[i]=dp[i-1];
            if(mp[i])
                dp[i]++;
        }
}
int main()
{
    init();
    while(~scanf("%d",&n))
    {
        printf("%dn",dp[n]);
    }
    return 0;
}

备战ccpc分站赛ing ,题目分析简略,见谅,转载请注明出处。。。。。

最后

以上就是追寻金针菇为你收集整理的Prime Number Aizu - 0009(素数筛)题意:题目:分析:AC模板:的全部内容,希望文章能够帮你解决Prime Number Aizu - 0009(素数筛)题意:题目:分析:AC模板:所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(44)

评论列表共有 0 条评论

立即
投稿
返回
顶部