标签:uva i++ can nbsp std 模板题 scanf space div
这道题就是一道简单的欧拉函数模板题,需要注意的是,当(1,1)时只有一个,其他的都有一对。应该对欧拉函数做预处理,显然不会超时。
#include<iostream> #include<string.h> #include<algorithm> #include<stdio.h> using namespace std; const int maxx = 50006;//最大范围 int phi[maxx]; void phi_table(){ for(int i=0;i<=maxx;i++)phi[i]=0; phi[1]=1; for (int i=2;i<=maxx;i++){ if (!phi[i]){ for (int j=i;j<=maxx;j+=i){ if (!phi[j])phi[j]=j; phi[j] = phi[j] / i *(i-1); } } } for (int i=2;i<=maxx;i++){ phi[i]+=phi[i-1]; } } int main(){ int a; int n; phi_table(); while(~scanf("%d",&n)){ if (n==0)break; int ans=2*phi[n]-1; printf("%d\n",ans); } return 0; }
标签:uva i++ can nbsp std 模板题 scanf space div
原文地址:https://www.cnblogs.com/bluefly-hrbust/p/9839374.html