当前位置:   article > 正文

【Ybtoj 第28章例1】线性筛素数【质数和约数】_质数和约数 ybtoj 哈希函数

质数和约数 ybtoj 哈希函数

在这里插入图片描述
在这里插入图片描述


解题思路

欧拉筛就行了


代码

#include<iostream>
#include<cstdio>
#include<algorithm>
#include<iomanip>
#include<cstring>
#include<cmath>
#include<map>
#include<queue>
#define ll long long
#define ldb long double
using namespace std;

int n,q,x,cnt,v[100000010],pri[100010];

int main(){
	scanf("%d%d",&n,&q);
	for(int i=2;i<=n;i++)
	{
		if(!v[i])
		{
			pri[++cnt]=i;
			v[i]=i;
		}
		for(int j=1;j<=cnt;j++)
		{
			if(pri[j]>v[i]||pri[j]>n/i)break;
			v[pri[j]*i]=pri[j];
		}
	}
	for(int i=1;i<=q;i++)
	{
		scanf("%d",&x);
		printf("%d\n",pri[x]);
	}
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/609362
推荐阅读
相关标签
  

闽ICP备14008679号