线性筛

Posted 033000-

tags:

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

同时得到欧拉函数和素数表

const int maxn=10000000+5;
bool check[maxn];
int phi[maxn];
int prime[maxn];
int tot;
void phi_ans_prime_table(int n){
    memset(check,false,sizeof(check));
    phi[1]=1;
    tot=0;
    for(int i=2;i<=n;i++){
        if(!check[i]){
            prime[tot++]=i;
            phi[i]=i-1;
        }
        for(int j=0;j<tot;j++){
            if(i*prime[j]>n) break;
            check[i*prime[j]]=true;
            if(i%prime[j]==0) {
                phi[i*prime[j]]=phi[i]*prime[j];
                break;
            }else phi[i*prime[j]]=phi[i]*(prime[j]-1);
        }
    }
}

 

以上是关于线性筛的主要内容,如果未能解决你的问题,请参考以下文章

线性筛素数(欧拉筛)

线性筛素数(欧拉筛)

线性筛素数(欧拉筛)

算法杂谈线性筛

线性筛--如何线性求约数个数

欧拉筛&&线性筛