博客
关于我
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

 文章转载于:

                       

 

你可能感兴趣的文章
mysql5.7命令总结
查看>>
mysql5.7安装
查看>>
mysql5.7性能调优my.ini
查看>>
MySQL5.7新增Performance Schema表
查看>>
Mysql5.7深入学习 1.MySQL 5.7 中的新增功能
查看>>
Webpack 之 basic chunk graph
查看>>
Mysql5.7版本单机版my.cnf配置文件
查看>>
mysql5.7的安装和Navicat的安装
查看>>
mysql5.7示例数据库_Linux MySQL5.7多实例数据库配置
查看>>
Mysql8 数据库安装及主从配置 | Spring Cloud 2
查看>>
mysql8 配置文件配置group 问题 sql语句group不能使用报错解决 mysql8.X版本的my.cnf配置文件 my.cnf文件 能够使用的my.cnf配置文件
查看>>
MySQL8.0.29启动报错Different lower_case_table_names settings for server (‘0‘) and data dictionary (‘1‘)
查看>>
MYSQL8.0以上忘记root密码
查看>>
Mysql8.0以上重置初始密码的方法
查看>>
mysql8.0新特性-自增变量的持久化
查看>>
Mysql8.0注意url变更写法
查看>>
Mysql8.0的特性
查看>>
MySQL8修改密码报错ERROR 1819 (HY000): Your password does not satisfy the current policy requirements
查看>>
MySQL8修改密码的方法
查看>>
Mysql8在Centos上安装后忘记root密码如何重新设置
查看>>