codevs 5790 素数序数

Posted Nico&11101001

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了codevs 5790 素数序数相关的知识,希望对你有一定的参考价值。

5790 素数序数(筛素数版)

 

时间限制: 1 s
空间限制: 32000 KB
题目等级 : 黄金 Gold
 
 
 
题目描述 Description

给定一个整数n,保证n为正整数且在int范围内,输出n是第几个质数

建议使用筛素数法

输入描述 Input Description

一行,一个整数

输出描述 Output Description

一行,一个整数

样例输入 Sample Input

3

样例输出 Sample Output

2

数据范围及提示 Data Size & Hint

int就够了。。。

然后看限制和题目名称,你懂得

别的没啥了吧

 1 #include<iostream>
 2 #include<cmath>
 3 using namespace std;
 4 #define maxn 20000000
 5 bool f[maxn];
 6 int main() 
 7 {
 8     int n,ans=0;
 9     cin>>n;
10     for(int i=2;i<=n;i++) 
11     {
12         if(!f[i])
13         {
14             ans++;
15             for(int j=1;i*j<=20000000;j++)
16             f[i*j]=true;
17         }
18     }
19     cout<<ans;
20 }

 

以上是关于codevs 5790 素数序数的主要内容,如果未能解决你的问题,请参考以下文章

CodeVS3223素数密度

codevs 2964公共素数因数

codevs——1430 素数判定

codevs1430 素数判定

素数筛 codevs 1675 大质数 2

codevs 2945 计算素数