码迷,mamicode.com
首页 > 其他好文 > 详细

UVA 11426 GCD - Extreme (II) 欧拉函数

时间:2016-04-13 20:15:37      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:

分析:枚举每个数的贡献,欧拉函数筛法

技术分享
#include <cstdio>
#include <iostream>
#include <ctime>
#include <vector>
#include <cmath>
#include <map>
#include <queue>
#include <algorithm>
#include <cstring>
using namespace std;
typedef long long LL;
const int N=4e6+5;
const int INF=0x3f3f3f3f;
LL sum[N],phi[N];
int main()
{
    phi[1]=0;
    for(int i=2;i<=N-5;++i){
      if(phi[i])continue;
      for(int j=i;j<=N-5;j+=i){
        if(!phi[j])phi[j]=j;
        phi[j]=phi[j]/i*(i-1);
      }
    }
    for(int i=1;i<=N-5;++i)sum[i]=sum[i-1]+phi[i];
    int n;
    while(~scanf("%d",&n),n){
      LL ans=0;
      for(int i=1;i<=n;++i){
        ans+=(LL)i*sum[n/i];
      }
      printf("%lld\n",ans);
    }
    return 0;
}
View Code

 

UVA 11426 GCD - Extreme (II) 欧拉函数

标签:

原文地址:http://www.cnblogs.com/shuguangzw/p/5388280.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!