poj 2689 Prime Distance(筛一个区间内的素数(或合数))

:

【题意说明】

给你指定的范围[L, U],在这个范围内找出相邻最近和最远的两组质数,若最近或最远值相同,输出较小的那组。其中:1≤L,另U-L≤1000000。

【问题分析】

此题与质数有关,显然若是能求出[L, U]之间的质数,然后从前往后扫描一遍即可出需要的结果,但问题是L与U的范围太大,是不可能在规定的时间内实现的。

但这里给我们提供了另一个条件:U-L≤1000000,如果我们只求1000000以内的素数,完全可以在规定的时间实现的!但由于所求的不是1~1000000以内的素数,所以我们需要做一点变形的处理:

用0~1000000与L~U建立一一对应关系(即i-L, L≤i≤U)。

用bool b[1000001]表示每个位置是否为素数。用筛选法求出L~U之间的素数(实际筛选的过程是去掉合数,所以每得到一个合数,b数组对应位置就标记出合数)。

最后从第1个素数开始扫描即可!

这里需要提醒的是当L=1的情况。

#include<iostream>
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<cmath>
using namespace std;
#define ll long long
const int N=50000;
int num,num1;
ll prime[N],prime1[80005];
bool flag[1000005];
//首先将N内的所有素数筛出来
void get_prime(){
    memset(flag,0,sizeof(flag));
    num=0;
    for(int i=2;i<N;i++){
        if(!flag[i]) prime[++num]=i;
        for(int j=1;j<=num&&prime[j]*i<N;j++){
            flag[i*prime[j]]=1;
            if(i%prime[j]==0) break;
        }
    }
}
ll l,r;      //记录左右端点
//将[l,r]区间内的素数筛出来
void get_prime1(){
    memset(flag,0,sizeof(flag));
    for(ll i=1;i<=num;i++){
        if(prime[i]*prime[i]>r) break;
        ll k=l%prime[i]==0?l:(l+prime[i]-l%prime[i]);  //找出>=l的第一个整除该素数的数
        if(k==prime[i]) k+=prime[i];     //避免将本身筛成非素数
        for(ll j=k;j<=r;j+=prime[i]){
            flag[j-l]=1;
        }
    }
    if(l==1) flag[0]=1;        //特判1
    num1=0;
    for(ll i=l;i<=r;i++)
        if(!flag[i-l]) prime1[++num1]=i;
}
int main(){
    get_prime();
    while(~scanf("%lld%lld",&l,&r)){
        int flag1=1;
        get_prime1();
        if(num1<=1) flag1=0;
        ll a1,b1,a2,b2,ma=0,mi=100000000;
        for(int i=2;i<=num1;i++){
            ll k=prime1[i]-prime1[i-1];
            if(ma<k)    ma=k,a1=prime1[i-1],b1=prime1[i];
            if(mi>k)    mi=k,a2=prime1[i-1],b2=prime1[i];
        }
        if(!flag1) printf("There are no adjacent primes.\n");
        else{
            printf("%lld,%lld are closest, %lld,%lld are most distant.\n",a2,b2,a1,b1);
        }
    }
    return 0;
}
时间: 2024-11-08 08:10:36

poj 2689 Prime Distance(筛一个区间内的素数(或合数))的相关文章

POJ 2689 Prime Distance 素数筛选法应用

题目来源:POJ 2689 Prime Distance 题意:给出一个区间L R 区间内的距离最远和最近的2个素数 并且是相邻的 R-L <= 1000000 但是L和R会很大 思路:一般素数筛选法是拿一个素数 然后它的2倍3倍4倍...都不是 然后这题可以直接从2的L/2倍开始它的L/2+1倍L/2+2倍...都不是素数 首先筛选出一些素数 然后在以这些素数为基础 在L-R上在筛一次因为 R-L <= 1000000 可以左移开一个1百万的数组 #include <cstdio>

poj 2689 Prime Distance 【数论】【筛法求素数】

题目链接:传送门 题目大意: 给你L和R两组数,L和R的范围是2^32,其间隔(即R-L最大为1,000,000.) .让你求出L和R之间素数的最大间隔和最小的间隔. 比如 2 17.之间的最小素数间隔是2 3,最大的素数间隔是11 17. 要是直接进行一个2^32次方筛法然后在判断是会T的. 我们这样来想,筛法求素数的原理是什么: /**vis数组标记为0则说明是素数*/ int vis[10005]; void getPrimevis(int n) { int m=sqrt(n+0.5);

POJ 2689 - Prime Distance - [筛法求素数]

题目链接:http://poj.org/problem?id=2689 Time Limit: 1000MS Memory Limit: 65536K Description The branch of mathematics called number theory is about properties of numbers. One of the areas that has captured the interest of number theoreticians for thousan

poj 2689 Prime Distance(大区间筛素数)

http://poj.org/problem?id=2689 题意:给出一个大区间[L,U],分别求出该区间内连续的相差最小和相差最大的素数对. 因为L<U<=2147483647,直接筛素数是不行的,数组就开不了.但是可以根据素数筛的原理.我们先筛出sqrt(2147483647)以内的素数,然后拿这些素数去筛[L,U]之间的素数,即两次素数筛.但是L,U还是很大,但U-L<=1000000,所以进行区间平移,将[L,U]平移为[0,U-L],就能用数组放得下. #include &l

POJ 2689 Prime Distance(素数区间筛法--经典题)

大致题意:给定[L,R]区间,找出区间内的每个素数 数据范围 : 1<=L< R<=2,147,483,647) R-L <=1,000,000. R的数值太大,所以不能直接筛[0,R]的,要空间和时间优化,用到区间筛法,另外注意不能用int,因为R和L都是满int的,中间有很多细节处理会爆int的,还要注意1不是素数,所以在区间筛中要特判一下,是个易错的地方 //1160K 16MS C++ 1539B #include<cstdio> #include<ios

POJ - 2689 Prime Distance(大区间素数筛选)

Description The branch of mathematics called number theory is about properties of numbers. One of the areas that has captured the interest of number theoreticians for thousands of years is the question of primality. A prime number is a number that is

[ACM] POJ 2689 Prime Distance (大区间素数筛选)

Prime Distance Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 12811   Accepted: 3420 Description The branch of mathematics called number theory is about properties of numbers. One of the areas that has captured the interest of number th

POJ题目2689 Prime Distance(任何区间素数筛选)

Prime Distance Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 13459   Accepted: 3578 Description The branch of mathematics called number theory is about properties of numbers. One of the areas that has captured the interest of number th

POJ 2689 Prime Distance(素数筛选)

题目链接:http://poj.org/problem?id=2689 题意:给出一个区间[L, R],找出区间内相连的,距离最近和距离最远的两个素数对.其中(1<=L<R<=2,147,483,647) R - L <= 1000000 思路:数据量太大不能直接筛选,要采用两次素数筛选来解决.我们先筛选出2 - 50000内的所有素数,对于上述范围内的数,如果为合数,则必定有2 - 50000内的质因子.换一句话说,也就是如果一个数没有2 - 50000内的质因子,那么这个数为素