Problem description
  一个数x的欧拉函数Φ(x)定义为全部小于x的正整数中与x互质的数的数目,如小于5且和5互质的数有1、2、3、4,一共4个,故Φ(5)=4。

对于随意正整数x,我们定义两种操作: 

1、f(x) = x + Φ(x);

2、g(x) = x * Φ(x);



如今,给定一个数a,问从1開始,须要多少步操作能得到a。

(如,当a = 2时,f(1)即为所求,故答案为1。而当a = 3时,f(f(1))即为所求。故答案为2)

Input
  每行输入一个整数a(0<a<=100000)。 
Output
  输出须要的步数,假设无法得到,输出-1。
Sample Input
  1. 2
  2. 3
Sample Output
  1. 1
  2. 2
Problem Source
  HUNNU Contest 

打出函数表,然后搜索便能够了

  1. #include <iostream>
  2. #include <stdio.h>
  3. #include <string.h>
  4. #include <stack>
  5. #include <queue>
  6. #include <map>
  7. #include <set>
  8. #include <vector>
  9. #include <math.h>
  10. #include <bitset>
  11. #include <algorithm>
  12. #include <climits>
  13. #include <time.h>
  14. using namespace std;
  15.  
  16. #define LS 2*i
  17. #define RS 2*i+1
  18. #define UP(i,x,y) for(i=x;i<=y;i++)
  19. #define DOWN(i,x,y) for(i=x;i>=y;i--)
  20. #define MEM(a,x) memset(a,x,sizeof(a))
  21. #define W(a) while(a)
  22. #define gcd(a,b) __gcd(a,b)
  23. #define LL long long
  24. #define N 100000
  25. #define MOD 1000000007
  26. #define INF 0x3f3f3f3f
  27. #define EXP 1e-8
  28.  
  29. int oula[N+5];
  30. int ans[N+5];
  31. void bfs()
  32. {
  33. int i,j,k;
  34. queue<int> Q;
  35. for(i = 1;i<=N;i++)
  36. {
  37. oula[i]=i;
  38. ans[i] = INF;
  39. }
  40. for(i = 2;i<=N;i++)
  41. {
  42. if(i==oula[i])
  43. {
  44. for(j = 1;j*i<=N;j++)
  45. {
  46. oula[j*i] = (oula[j*i]/i)*(i-1);
  47. }
  48. }
  49. }
  50. ans[1] = 0;
  51. Q.push(1);
  52. while(!Q.empty())
  53. {
  54. int s = Q.front();
  55. Q.pop();
  56. if(s+oula[s]<=N&&ans[s+oula[s]]>ans[s]+1)
  57. {
  58. ans[s+oula[s]]=ans[s]+1;
  59. Q.push(s+oula[s]);
  60. }
  61. if((LL)s*oula[s]>N) continue;
  62. if((LL)s*oula[s]<=N&&ans[s*oula[s]]>ans[s]+1)
  63. {
  64. ans[s*oula[s]]=ans[s]+1;
  65. Q.push(s*oula[s]);
  66. }
  67. }
  68. }
  69.  
  70. int main()
  71. {
  72. LL i,j,k;
  73. int n;
  74. bfs();
  75. while(~scanf("%d",&n))
  76. {
  77. if(ans[n]==INF) puts("-1");
  78. else
  79. printf("%d\n",ans[n]);
  80. }
  81.  
  82. return 0;
  83. }

hunnu11550:欧拉函数的更多相关文章

  1. hdu2588 GCD (欧拉函数)

    GCD 题意:输入N,M(2<=N<=1000000000, 1<=M<=N), 设1<=X<=N,求使gcd(X,N)>=M的X的个数.  (文末有题) 知 ...

  2. BZOJ 2705: [SDOI2012]Longge的问题 [欧拉函数]

    2705: [SDOI2012]Longge的问题 Time Limit: 3 Sec  Memory Limit: 128 MBSubmit: 2553  Solved: 1565[Submit][ ...

  3. BZOJ 2818: Gcd [欧拉函数 质数 线性筛]【学习笔记】

    2818: Gcd Time Limit: 10 Sec  Memory Limit: 256 MBSubmit: 4436  Solved: 1957[Submit][Status][Discuss ...

  4. COGS2531. [HZOI 2016]函数的美 打表+欧拉函数

    题目:http://cogs.pw/cogs/problem/problem.php?pid=2533 这道题考察打表观察规律. 发现对f的定义实际是递归式的 f(n,k) = f(0,f(n-1,k ...

  5. poj2478 Farey Sequence (欧拉函数)

    Farey Sequence 题意:给定一个数n,求在[1,n]这个范围内两两互质的数的个数.(转化为给定一个数n,比n小且与n互质的数的个数) 知识点: 欧拉函数: 普通求法: int Euler( ...

  6. 51Nod-1136 欧拉函数

    51Nod: http://www.51nod.com/onlineJudge/questionCode.html#!problemId=1136 1136 欧拉函数 基准时间限制:1 秒 空间限制: ...

  7. 欧拉函数 - HDU1286

    欧拉函数的作用: 有[1,2.....n]这样一个集合,f(n)=这个集合中与n互质的元素的个数.欧拉函数描述了一些列与这个f(n)有关的一些性质,如下: 1.令p为一个素数,n = p ^ k,则 ...

  8. FZU 1759 欧拉函数 降幂公式

    Description   Given A,B,C, You should quickly calculate the result of A^B mod C. (1<=A,C<=1000 ...

  9. hdu 3307 Description has only two Sentences (欧拉函数+快速幂)

    Description has only two SentencesTime Limit: 3000/1000 MS (Java/Others) Memory Limit: 65536/32768 K ...

随机推荐

  1. 学习《Python数据科学手册》高清中文PDF+高清英文PDF+代码

    如果有一定的数据分析与机器学习理论与实践基础,<Python数据科学手册>这本书是绝佳选择. 是对以数据深度需求为中心的科学.研究以及针对计算和统计方法的参考书.很友好实用,结构很清晰.但 ...

  2. Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-qvc66dfs/supervisor/

    # 安装supervisor 出错 pip3 install supervisor # 解决 sudo pip3 install supervisor

  3. 紫书 习题 10-44 UVa 11246 ( 容斥原理)

    把k的倍数的删去(k, 2k, 3k--),但是k^2不应该删去,因为k已经删去,所以不存在某个数乘上k之后为k^2 所以k^2可以留下,然后因为有k^2,所以k^3就是k^2的k倍,所以k^3要删去 ...

  4. Linux发行版centos, ubuntu等

    公司装的是centos,centos其实就是无支持版的redhat. redhat是一个服务器的操作系统它的稳定性是比较高的,同时提供在线管理服务,服务器故障预警等,当然前提是要购买昂贵的服务. Su ...

  5. 谈谈 Struts2 的拦截器

    套话 相信非常多人都用过 Struts2 了,当然,对 Struts2 的原理也都比較了解.之前在一个项目中就已经用到了,当初的理解也不过局限在应用的层面上,对于更深层次的原理.机制,了解的并非非常多 ...

  6. 【java】itoo项目实战之大数据查询之使用 new map 优化hibernate之级联查询

    在我的上一篇博客<[java]itoo项目实战之hibernate 懒载入优化性能>中,我曾提到过学生数据有2万条,查询数据十分的慢,这是让人非常受不了的事情.看着页面进度条一直转着圈圈, ...

  7. Apache Spark 1.6公布(新特性介绍)

    Apache Spark 1.6公布 CSDN大数据 | 2016-01-06 17:34 今天我们很高兴可以公布Apache Spark 1.6,通过该版本号,Spark在社区开发中达到一个重要的里 ...

  8. FFmpeg的HEVC解码器源码简单分析:解码器主干部分

    ===================================================== HEVC源码分析文章列表: [解码 -libavcodec HEVC 解码器] FFmpeg ...

  9. es65 跨模块常量

    <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8&quo ...

  10. 第一个C#控制台程序

    using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.T ...