博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hdu2824(欧拉函数)
阅读量:5340 次
发布时间:2019-06-15

本文共 1467 字,大约阅读时间需要 4 分钟。

The Euler function

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)

Total Submission(s): 3674    Accepted Submission(s): 1509

Problem Description
The Euler function phi is an important kind of function in number theory, (n) represents the amount of the numbers which are smaller than n and coprime to n, and this function has a lot of beautiful characteristics. Here comes a very easy question: suppose you are given a, b, try to calculate (a)+ (a+1)+....+ (b)
 

 

Input
There are several test cases. Each line has two integers a, b (2<a<b<3000000).
 

 

Output
Output the result of (a)+ (a+1)+....+ (b)
 

 

Sample Input
3 100
 

 

Sample Output
3042
 
总结:最初,我用sum[i]数组存储1到i的欧拉函数值得和,但是因为开了两个数组,超了空间,本想用此法优化时间的,结果还是要从a循环到b取每个数的欧拉函数的值相加
1 #include
2 #include
3 __int64 euler[3000000]; 4 int main() 5 { 6 __int64 ans; 7 memset(euler,0,sizeof(euler)); 8 euler[1] = 1; 9 int a,b,i,j;10 for(i = 2; i <3000000; i++)11 {12 if(!euler[i])13 for(j = i; j <3000000; j += i)14 {15 if(!euler[j])16 euler[j] = j;17 euler[j] = euler[j]/i*(i-1);18 }19 }20 while(scanf("%d%d",&a,&b)!=EOF)21 {22 ans=0;23 for(i=a; i<=b; i++)24 ans+=euler[i];25 printf("%I64d\n",ans);26 }27 return 0;28 }
View Code

 

转载于:https://www.cnblogs.com/lxm940130740/p/3910589.html

你可能感兴趣的文章
lintcode83- Single Number II- midium
查看>>
移动端 响应式、自适应、适配 实现方法分析(和其他基础知识拓展)
查看>>
selenium-窗口切换
查看>>
使用vue的v-model自定义 checkbox组件
查看>>
[工具] Sublime Text 使用指南
查看>>
Hangfire在ASP.NET CORE中的简单实现方法
查看>>
Algorithm——何为算法?
查看>>
Web服务器的原理
查看>>
小强升职计读书笔记
查看>>
常用的107条Javascript
查看>>
#10015 灯泡(无向图连通性+二分)
查看>>
忘记root密码,怎么办
查看>>
linux设备驱动归纳总结(三):1.字符型设备之设备申请【转】
查看>>
《黑客与画家》 读书笔记
查看>>
bzoj4407: 于神之怒加强版
查看>>
mysql统计一张表中条目个数的方法
查看>>
ArcGIS多面体(multipatch)解析——引
查看>>
css3渐变画斜线 demo
查看>>
JS性能DOM优化
查看>>
设计模式 单例模式 使用模板及智能指针
查看>>