POJ 3006 Dirichlet's Theorem on Arithmetic Progressions 快筛质数

简介:

题目大意:给出一个等差数列,问这个等差数列的第n个素数是什么。


思路:这题主要考怎样筛素数,线性筛。详见代码。


CODE:

#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>
#define MAX 1000010
using namespace std;

int prime[MAX],primes;
bool notp[MAX];

int a,d,n;

void Pretreatment()
{
	notp[1] = true;
	for(int i = 2; i < MAX; ++i) {
		if(!notp[i])
			prime[++primes] = i;
		for(int j = 1; j <= primes && i * prime[j] < MAX; ++j) {
			notp[i * prime[j]] = true;
			if(i * prime[j] == 0)
				break;
		}
	}
}

int main()
{
	Pretreatment();
	while(scanf("%d%d%d",&a,&d,&n),a + d + n) {
		for(int now = a;; now += d) {
			if(!notp[now])	--n;
			if(!n) {
				printf("%d\n",now);
				break;
			}
		}
	}
	return 0;
}





本文转自mfrbuaa博客园博客,原文链接:http://www.cnblogs.com/mfrbuaa/p/5371137.html,如需转载请自行联系原作者

相关文章
|
7月前
|
存储 算法 Serverless
C++中求根号
C++中求根号
1886 0
|
算法
质数筛法:朴素素数筛,埃氏筛,欧式筛
质数筛法:朴素素数筛,埃氏筛,欧式筛
160 0
POJ 2689 Prime Distance (埃氏筛 区间筛)
POJ 2689 Prime Distance (埃氏筛 区间筛)
115 0
每日一题1021:迭代法求平方根
题目描述: 用迭代法求 平方根 公式:求a的平方根的迭代公式为: X[n+1]=(X[n]+a/X[n])/2 要求前后两次求出的差的绝对值少于0.00001。 输出保留3位小数
171 0
牛顿迭代法求开方
牛顿迭代法求开方
210 0
牛顿迭代法求开方
|
人工智能 数据建模 BI
POJ 3662 Telephone Lines【Dijkstra最短路+二分求解】
Telephone Lines Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 7214   Accepted: 2638 Description Farmer John wants to set up a telephone line at his farm.
1150 0
|
人工智能
Uva 11300 Spreading the Wealth(递推,中位数)
Spreading the Wealth Problem A Communist regime is trying to redistribute wealth in a village. They have have decided to sit everyone around a circular table.
917 0

热门文章

最新文章