874. 筛法求欧拉函数
Posted 幽殇默
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了874. 筛法求欧拉函数相关的知识,希望对你有一定的参考价值。
上图摘自Acwing的某位大佬:https://www.acwing.com/solution/content/28507/
https://www.acwing.com/problem/content/876/
#include<cstdio>
#include<iostream>
using namespace std;
const int N=1e6+10;
typedef long long int LL;
LL phi[N];
LL prime[N],cnt;
bool st[N];
LL get_prime(int n)
{
phi[1]=1;
for(int i=2;i<=n;i++)
{
if(!st[i])
{
prime[cnt++]=i;
phi[i]=i-1;
}
for(int j=0;prime[j]<=n/i;j++)
{
st[prime[j]*i]=true;
if(i%prime[j]==0)
{
phi[prime[j]*i]=phi[i]*prime[j];
break;
}
phi[i*prime[j]]=phi[i]*(prime[j]-1);
}
}
LL res=0;
for(int i=1;i<=n;i++) res+=phi[i];
return res;
}
int n;
int main(void)
{
cin>>n;
cout<<get_prime(n)<<endl;
return 0;
}
以上是关于874. 筛法求欧拉函数的主要内容,如果未能解决你的问题,请参考以下文章