博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[luoguP1069] 细胞分裂(数论)
阅读量:5221 次
发布时间:2019-06-14

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

 

分解质因数,不说了

这题坑了我2个多小时

教训

不熟悉位运算的优先级一定要加括号!!!!

#include 
#include
#define N 1000001#define LL long long#define max(x, y) ((x) > (y) ? (x) : (y))#define min(x, y) ((x) < (y) ? (x) : (y))int n, m1, m2, m, sum, ans = 1e9, tot, t = 1, p;int b[N], c[N];bool f;inline int read(){ int x = 0, f = 1; char ch = getchar(); for(; !isdigit(ch); ch = getchar()) if(ch == '-') f = -1; for(; isdigit(ch); ch = getchar()) x = (x << 1) + (x << 3) + ch - '0'; return x * f;}inline int gcd(int x, int y){ return !y ? x : gcd(y, x % y);}int main(){ int i, j, a, x; n = read(); m1 = read(); m2 = read(); if(m1 == 1) { puts("0"); return 0; } x = m1; for(j = 2; j <= m1; j++) { while(!(x % j)) c[t] = j, b[t]++, x /= j; b[t] *= m2; if(b[t]) t++; } t--; for(i = 1; i <= n; i++) { sum = f = 0; p = 1; x = a = read(); if(gcd(m1, a) == 1) continue; for(j = 2; j <= a; j++) { tot = 0; while(!(x % j)) tot++, x /= j; if(tot && c[p] == j) sum = max(sum, b[p] / tot + (b[p] % tot != 0)), p++; if(c[p] < j) break; } if(p > t) ans = min(ans, sum); } printf("%d\n", ans == 1e9 ? -1 : ans); return 0;}

  

转载于:https://www.cnblogs.com/zhenghaotian/p/7056002.html

你可能感兴趣的文章
IOS Google语音识别更新啦!!!
查看>>
20190422 T-SQL 触发器
查看>>
[置顶] Linux终端中使用上一命令减少键盘输入
查看>>
poj1422_有向图最小路径覆盖数
查看>>
BootScrap
查看>>
[大牛翻译系列]Hadoop(16)MapReduce 性能调优:优化数据序列化
查看>>
WEB_点击一百万次
查看>>
CodeForces - 878A Short Program(位运算)
查看>>
路冉的JavaScript学习笔记-2015年1月23日
查看>>
Mysql出现(10061)错误提示的暴力解决办法
查看>>
2018-2019-2 网络对抗技术 20165202 Exp3 免杀原理与实践
查看>>
NPM慢怎么办 - nrm切换资源镜像
查看>>
CoreData 从入门到精通(四)并发操作
查看>>
Swift - UIView的常用属性和常用方法总结
查看>>
Swift - 异步加载各网站的favicon图标,并在单元格中显示
查看>>
Java编程思想总结笔记Chapter 5
查看>>
[LeetCode]662. Maximum Width of Binary Tree判断树的宽度
查看>>
WinForm聊天室
查看>>
【Python学习笔记】1.基础知识
查看>>
梦断代码阅读笔记02
查看>>