博客
关于我
POJ 3696
阅读量:136 次
发布时间:2019-02-27

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

题目连接:

 

题意:求出由全8组成的数的最短长度,使得给定的L能整除它。

分析:先分析公式,可以发现一个全由A组成的数的表示形式为:,所以全8组成的数为:

 

L能整除它,则有:,亦即:,则应该先约去8与9L的最大公约数。

因为8与9互素,所以实际上就是约去8与L的最大公约数。

所以进一步有:

设gcd(a,m)=1,必有正整数x,使得a^x=1(mod m),且设满足等式的最小正整数为x0,必满足x0|phi(m).注意m>1.

否则如果gcd(a,m)!=1,则方程a^x=1(mod m)没有解。

个人补充:

∵ 8*(10^x - 1 ) / 9 能整除 L

假设 8*(10^x - 1 ) / (9*L) == p ( p 为整数)

∴ 8*(10^x - 1 ) == 9*p*L   ==》 8*(10^x - 1 ) =0 mod(9*L)

∵ 8*(10^x - 1 ) == 9*p*L    两边同时约去 gcd(8,L)   得到 p1*(10^x - 1) == 9*p*L/gcd(8,L)

∴ 10^x - 1 == 9*k*L / gcd(8,L)   其中,k = p / p1

于是有 

 

还有另一种思路:

 

 

 

#include
#include
#include
#include
using namespace std;typedef long long LL;LL dp[1000005];LL gcd(LL a,LL b){ return b? gcd(b,a%b):a;}LL phi(LL n){ // 欧拉函数 LL rea = n; for(LL i=2;i*i <= n;i++){ if(n % i == 0){ rea = rea - rea / i ; while(n % i == 0) n /= i; } } if(n > 1) rea = rea - rea / n; return rea;}LL Mul(LL a,LL b,LL m){ LL ans = 0; while(b){ if(b & 1){ ans = (ans+a) % m; b--; } b >>= 1; a = (a+a) % m; } return ans;}LL quick_mod(LL a,LL b,LL m){ LL ans = 1; a %= m; while(b){ if(b & 1) { ans = Mul(ans,a,m); b--; } b >>= 1; a = Mul(a,a,m); } return ans;}int main(){ int k=1; LL l,m; while(scanf("%lld",&l) != EOF){ if(l == 0) break; printf("Case %d: ",k++); m = 9*l/gcd(8,l); if(gcd(10,m) != 1){ // 无解情况 puts("0"); continue; } LL ans = phi(m); LL size = 0; for(LL i=1;i*i<=ans;i++){ //记录 phi(m) 的因子。 if(ans % i == 0){ dp[size++] = i; if(ans != i*i) dp[size++] = ans / i; } } sort(dp,dp+size); LL i; for(i=0;i

 文章转载于:

                       

 

你可能感兴趣的文章
MySQL索引详解(IT枫斗者)
查看>>
Mysql索引(2):索引结构
查看>>
Mysql索引(3):索引分类
查看>>
Mysql索引(4):索引语法
查看>>
mysql级联删除_Mysql笔记系列,DQL基础复习,Mysql的约束与范式
查看>>
mysql经常使用命令
查看>>
MySQL经常使用技巧
查看>>
mysql给账号授权相关功能 | 表、视图等
查看>>
MySQL缓存使用率超过80%的解决方法
查看>>
Mysql缓存调优的基本知识(附Demo)
查看>>
mysql编写存储过程
查看>>
mysql网站打开慢问题排查&数据库优化
查看>>
mysql网络部分代码
查看>>
mysql联合索引 where_mysql联合索引与Where子句优化浅析
查看>>
mysql联合索引的最左前缀匹配原则
查看>>
mysql自动化同步校验_Shell: 分享MySQL数据同步+主从复制自动化脚本_20190313_七侠镇莫尛貝...
查看>>
Mysql自增id理解
查看>>
mysql自增id超大问题查询
查看>>
MySQL自定义变量?学不废不收费
查看>>
MySQL自带information_schema数据库使用
查看>>