luogu_1865 A % B Problem

Posted Code_Together

tags:

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

#include <cstdio>
#include <iostream>
using namespace std;
const int N=1000000;
int p[N],n,m,nop[N],cnt,sum,ans[N];

int main(){
    scanf("%d%d",&n,&m);
    nop[1]=1;
    for(int i=2;i<=m;i++){
        if(!nop[i]){p[++cnt]=i; sum++;}
        ans[i]=sum;
        for(int j=1;j<=cnt && p[i]<=i && i*p[j]<=m;j++){
            nop[i*p[j]]=1;
            if(i%p[j]==0)break;
        }
    }
    while(n--){
        int l,r;
        scanf("%d%d",&l,&r);
        if(l<1 || r>m){puts("Crossing the line"); continue;}
        printf("%d\n",ans[r]-ans[l-1]);
    }
    return 0;
}

  

 

以上是关于luogu_1865 A % B Problem的主要内容,如果未能解决你的问题,请参考以下文章

洛谷 P1865 A % B Problem(简单区间素数) 题解

P1865 A % B Problem

P1865 A % B Problem

质数筛(洛谷1865 A % B Problem)

洛谷 P1865 A % B Problem

洛谷 P1865 A % B Problem