首页 > 其他 > 详细

HDU 2824 The Euler function【模板题】

时间:2015-03-24 22:34:27      阅读:240      评论:0      收藏:0      [点我收藏+]

求区间欧拉函数和

代码:

技术分享
 1 #include <iostream>
 2 #include <cstdio>
 3 #include <cstring>
 4 using namespace std;
 5 
 6 const int maxn = 3000005;
 7 long long e[maxn + 10];
 8 
 9 void init() {
10     e[1] = 1;
11     for(int i = 2; i < maxn; i++) e[i] = i;
12     for(int i = 2; i < maxn; i++) 
13         if(e[i] == i) 
14             for(int j = i; j < maxn; j += i) 
15                 e[j] = e[j] / i * ( i - 1);
16     for(int i = 2; i < maxn; i++) {
17         e[i] += e[i - 1];
18     }
19 }
20 
21 int main() {
22     init();
23     int n, m;
24     while(EOF != scanf("%d %d",&n, &m)) {
25         printf("%I64d\n", e[m] - e[n - 1]);
26     }
27     return 0;
28 }
View Code

 

HDU 2824 The Euler function【模板题】

原文:http://www.cnblogs.com/zhanzhao/p/4364021.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!