【BZOJ4803】逆欧拉函数
【BZOJ4803】逆欧拉函数
题面
题解
题目是给定你\(\varphi(n)\)要求前\(k\)小的\(n\)。
设\(n=\prod_{i=1}^k{p_i}^{c_i}\)
则\(\varphi(n)=\prod_{i=1}^k{p_i}^{c_i-1}(p_i-1)\)
然后我们猜一下这个\(n\)不是很多,事实上\(n\)不超过\(50w\)个。
考虑暴力\(dfs\)出所有的\(n\):
首先筛出\(\sqrt{\varphi(n)}\)内的素数
对于当前\(dfs\)的值\(phi\)
看\(phi\)中的约数有没有\(筛出的素数-1\)
若有,假设该素数为\(p\)
去除\(phi\)中的所有\(p\),之后再将\(dfs\)的\(n\)累乘上\(p\)
在每一次递归开头用\(miller\)_\(Rabin\)判断\(phi+1\)是否为素数,如果是,则直接加进答案就行了
想一想,为什么?
代码
#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cmath>
#include <algorithm>
#include <ctime>
using namespace std;
typedef long long ll;
const int MAX_N = 1e7 + 5;
const int T = 10;
bool is_prime[MAX_N];
int prime[MAX_N], num, K;
ll N = 1e7, ans[MAX_N], cnt_ans;
void sieve() {
for (int i = 1; i <= N; i++) is_prime[i] = 1;
is_prime[1] = 0;
for (int i = 2; i <= N; i++) {
if (is_prime[i]) prime[++num] = i;
for (int j = 1; prime[j] * i <= N && j <= num; j++) {
is_prime[i * prime[j]] = 0;
if (!(i % prime[j])) break;
}
}
}
ll fmul(ll x, ll y, ll Mod) {
ll res = 0;
while (y) {
if (y & 1ll) res = (res + x) % Mod;
y >>= 1ll;
x = (x + x) % Mod;
}
return res;
}
ll fpow(ll x, ll y, ll Mod) {
ll res = 1;
while (y) {
if (y & 1ll) res = fmul(res, x, Mod);
y >>= 1ll;
x = fmul(x, x, Mod);
}
return res;
}
bool Test(ll a, ll n) {
ll r = 0, t = n - 1, m;
while ((t & 1ll) == 0) ++r, t >>= 1ll;
m = (n - 1) / (1ll << r);
for (int i = 0; i < r; i++) if (fpow(a, (1ll << i) * m, n) == n - 1) return 1;
if (fpow(a, m, n) == 1) return 1;
return 0;
}
bool Miller_Rabin(ll n) {
if (n == 2ll) return 1;
if (n < 2ll || ((n & 1ll) == 0)) return 0;
for (int i = 1; i <= T; i++) {
ll a = rand() % (n - 2) + 2;
if (fpow(a, n - 1, n) != 1) return 0;
if (!Test(a, n)) return 0;
}
return 1;
}
void solve(ll phi, ll n, int lst) {
if (phi + 1 > prime[num] && Miller_Rabin(phi + 1))
ans[++cnt_ans] = n * (phi + 1);
for (int i = lst; i; i--) {
if (!(phi % (prime[i] - 1))) {
ll t1 = phi / (prime[i] - 1), t2 = n, t3 = 1ll;
while (!(t1 % t3)) {
t2 *= prime[i];
solve(t1 / t3, t2, i - 1);
t3 *= prime[i];
}
}
}
if (phi == 1ll) ans[++cnt_ans] = n;
}
int main () {
srand(time(NULL));
sieve();
cin >> N >> K;
solve(N, 1ll, num);
sort(&ans[1], &ans[cnt_ans + 1]);
for (int i = 1; i < K; i++) printf("%lld ", ans[i]);
printf("%lld\n", ans[K]);
return 0;
}
【BZOJ4803】逆欧拉函数的更多相关文章
- 求逆欧拉函数(arc)
已知欧拉函数计算公式 初始公式:φ(n)=n*(1-1/p1)*(1-1/p2).....*(1-1/pm) 又 n=p1^a1*p2^a2*...*ps^as 欧拉函数是积性函数 那么:φ(n ...
- now code——小a和黄金街道(欧拉函数和快速幂模板)
小a和小b来到了一条布满了黄金的街道上.它们想要带几块黄金回去,然而这里的城管担心他们拿走的太多,于是要求小a和小b通过做一个游戏来决定最后得到的黄金的数量.游戏规则是这样的:假设道路长度为米(左端点 ...
- UVA10200-Prime Time/HDU2161-Primes,例题讲解,牛逼的费马小定理和欧拉函数判素数。
10200 - Prime Time 此题极坑(本菜太弱),鉴定完毕,9遍过. 题意:很简单的求一个区间 ...
- hdu2588 GCD (欧拉函数)
GCD 题意:输入N,M(2<=N<=1000000000, 1<=M<=N), 设1<=X<=N,求使gcd(X,N)>=M的X的个数. (文末有题) 知 ...
- BZOJ 2705: [SDOI2012]Longge的问题 [欧拉函数]
2705: [SDOI2012]Longge的问题 Time Limit: 3 Sec Memory Limit: 128 MBSubmit: 2553 Solved: 1565[Submit][ ...
- BZOJ 2818: Gcd [欧拉函数 质数 线性筛]【学习笔记】
2818: Gcd Time Limit: 10 Sec Memory Limit: 256 MBSubmit: 4436 Solved: 1957[Submit][Status][Discuss ...
- COGS2531. [HZOI 2016]函数的美 打表+欧拉函数
题目:http://cogs.pw/cogs/problem/problem.php?pid=2533 这道题考察打表观察规律. 发现对f的定义实际是递归式的 f(n,k) = f(0,f(n-1,k ...
- poj2478 Farey Sequence (欧拉函数)
Farey Sequence 题意:给定一个数n,求在[1,n]这个范围内两两互质的数的个数.(转化为给定一个数n,比n小且与n互质的数的个数) 知识点: 欧拉函数: 普通求法: int Euler( ...
- 51Nod-1136 欧拉函数
51Nod: http://www.51nod.com/onlineJudge/questionCode.html#!problemId=1136 1136 欧拉函数 基准时间限制:1 秒 空间限制: ...
随机推荐
- 安装LAMP PHP的./configure 參数,未出现MYSQ
版权声明:本文为博主原创文章,未经博主同意不得转载. https://blog.csdn.net/default7/article/details/30613781 编译參数: ./configure ...
- yii2.0 联表查询数据库报错:undefined index order_id
1.在查询时加了->select();如下,要加上order_id,即关联的字段(比如:order_id)比如要在select中,否则会报错:undefined index order_id / ...
- 【Git】本地与GitHub同步
按步骤一步一步来,成功啦~ 以管理员身份运行Git-bash 要求输入用户名,密码 成功推入github~~加油加油 补充: 将仓库中的改动同步到本地 在git-bash中进入项目目录下,使用git ...
- ajax传递数组,后台接收为null解决方法
traditional:true,加上这个就好,默认为false,即允许深度序列化参数,但是servlet api不支持,所有设为true阻止就好了. $.ajax({ type:'post', ur ...
- HDU 1116 Play on Words(欧拉回路+并查集)
传送门: http://acm.hdu.edu.cn/showproblem.php?pid=1116 Play on Words Time Limit: 10000/5000 MS (Java/Ot ...
- 调试libRTMP代码来分析RTMP协议
RTMP是Real Time Messaging Protocol(实时消息传输协议)的首字母缩写.该协议基于TCP,是一个协议族,常用在视频直播领域.RTMP协议的默认端口是1935. 学习一个协议 ...
- 使用Docker遇到的基本命令及问题小结
当遇到Cannot connect to the Docker daemon. Is the docker daemon running on this host?导致Docker无法启动时,重启Do ...
- fdfs上传图片成功在浏览器中访问不到404 Not Found
1.检查自己nginx配置文件,看是否有 user root这行 . 在nginx.conf文件里加一条:user root; 2.检查自己配置文件: storage.conf中的文件路径是否正确 ...
- iOS:cocoapods 配置相关(19-04-02更)
1.gem sources 2.libwebp 1.gem sources 因为,mac更新,cocoapods也要更新,使用下面指令,提示找不到.org,原因是淘宝的镜像源.org换成.com,所以 ...
- 在linux系统中用docker搭建ss
首先呢,你的先有一台自己的服务器把,这个就不多赘述了,我自己买了一台国外的VPS. 一.docker的安装 首先我们来看下服务器的版本信息: cat /etc/redhat-release //Cen ...