Prime Number Aizu - 0009(素数筛)
生活随笔
收集整理的這篇文章主要介紹了
Prime Number Aizu - 0009(素数筛)
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
題意:
給一個數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("%d\n",dp[n]);}return 0; }備戰ccpc分站賽ing ,題目分析簡略,見諒,轉載請注明出處。。。。。
總結
以上是生活随笔為你收集整理的Prime Number Aizu - 0009(素数筛)的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: GCD and LCM Aizu - 0
- 下一篇: 泡脚真的可以减肥吗