欧拉函数
2021/7/21 23:14:07
本文主要是介绍欧拉函数,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
\(\phi(n)=n(1-\frac{1}{p_1})(1-\frac{1}{p_2})(1-\frac{1}{p_3})...\)
\(\phi(n):1到n-1中与n互质的数的个数.\)
这个公式是由容斥原理得到的.
求法 :
1.
直接求.
int phi(int x) { int res = x; for (int i = 2; i <= x / i; i++) if (x % i == 0) { res = res / i * (i - 1); while (x % i == 0) x /= i; } if (x > 1) res = res / x * (x - 1); return res; }
2.
线性筛法求欧拉函数.
void init() { phi[1] = 1; for (int i = 2; i < N; ++i) { if (!st[i]) { pri[cnt++] = i; phi[i] = i - 1; } for (int j = 0; pri[j] * i < N; ++j) { st[pri[j] * i] = true; if (i % pri[j] == 0) { phi[pri[j] * i] = phi[i] * pri[j]; break; } phi[pri[j] * i] = phi[i] * (pri[j] - 1); } } }
这篇关于欧拉函数的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-16Maven资料入门指南
- 2024-11-16Maven资料入门教程
- 2024-11-16MyBatis Plus资料:新手入门教程与实践指南
- 2024-11-16MyBatis-Plus资料入门教程:快速上手指南
- 2024-11-16Mybatis资料入门教程:新手必看指南
- 2024-11-16MyBatis资料详解:新手入门与初级实战指南
- 2024-11-16MyBatisPlus资料:初学者入门指南与实用教程
- 2024-11-16MybatisPlus资料详解:初学者入门指南
- 2024-11-16MyBatisX资料:新手入门与初级教程
- 2024-11-16RESTful接口资料详解:新手入门指南