HDU 2588 GCD GCD问题总结

2024-05-03 19:08
文章标签 问题 总结 hdu gcd 2588

本文主要是介绍HDU 2588 GCD GCD问题总结,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

                                                                                                             GCD(一)

题目:

 The greatest common divisor GCD(a,b) of two positive integers a and b,sometimes written (a,b),is the largest divisor common to a and b,For example,(1,2)=1,(12,18)=6.
(a,b) can be easily found by the Euclidean algorithm. Now Carp is considering a little more difficult problem:
Given integers N and M, how many integer X satisfies 1<=X<=N and (X,N)>=M.

   求满足题目要求的x个数。

算法:

   直接筛选会超时,根据题目给出的不等式特点GCD(x,N) >= M 可以知道满足题目要求的一定是N的因子而且必须大于等于M(想想为什么?解体关键)。所以,只要枚举N的大于等于M的因子就可以了。因为,在10^9内最多的因子数不超过30个。所以,总时间是O(30*loglogn)接近常数。

 

#include <iostream>
#include <algorithm>
#include <cstdio>
#include <cstring>
#include <cmath>
using namespace std;typedef __int64 LL;
const int MOD = 1000000007;int euler_phi(int n){int k = (int)sqrt(n + 0.5);int ans = n;for(int i = 2;i <= k;++i) if(0 == n % i){ans = ans / i * (i - 1);while(0 == n % i) n /= i;}if(n > 1) ans = ans / n * (n - 1);return ans;
}LL getFact(int n,int m){LL res = 0;int k = sqrt(n + 0.5);int tmp;for(int i = 1;i <= k;++i){if(0 == n % i){tmp = n / i;if(i >= m) res += euler_phi(n / i);if(tmp >= m && i != tmp) res += euler_phi(n / tmp);}}return res;
}int main()
{int T,n,m;scanf("%d",&T);while(T--){scanf("%d%d",&n,&m);if(n == 1 && m == 1){puts("1");continue;}printf("%I64d\n",getFact(n,m));}return 0;
}


 

  

                                GCD(二)

题目:

   给你一个数N,使得在1~N之间能够找到x使得x满足gcd( x ,  N  ) >= M,求解gcd(x,N)的和。

算法:

  由上题的知识可以知道,1...N的互质个数为欧拉函数值且其gcd只能是N的因子。所以,对于N = x * y。我们只要

求出x在y内的互质个数就好了,结果乘以x就是gcd = x的和了.

证明:

   SUM(gcd = x ) = 1*x + 2*x + 3*x ..... y*x

  所以,当gcd = x的时候只要求出y的欧拉函数值就好了。

 

而一个数的因子又可以在sqrt(N)内求出。

 

#include <iostream>
#include <algorithm>
#include <cstdio>
#include <cstring>
#include <cmath>
using namespace std;typedef long long LL;int euler_phi(int n){int m = sqrt(n + 0.5);int ans = n;for(int i = 2;i <= m;++i) if(0 == n % i){ans = ans / i * (i - 1);while(0 == n % i) n /= i;}if(n > 1) ans = ans / n * (n - 1);return ans;
}LL solve(int n,int m){LL res = 0;int k = sqrt(n + 0.5);for(int i = 1;i <= k;++i){if(0 == n % i){if(i >= m)res += i * euler_phi(n / i);if(i != n / i && n / i >= m)res += n / i * euler_phi(i);}}return res;
}int main()
{int n,m;while(~scanf("%d%d",&n,&m)){printf("%lld\n",solve(n,m));}return 0;
}


 

                                                                                                  GCD(三)

 

题目:

    The greatest common divisor GCD(a,b) of two positive integers a and b,sometimes written (a,b),is the largest divisor common to a and b,For example,(1,2)=1,(12,18)=6.
(a,b) can be easily found by the Euclidean algorithm. Now Carp is considering a little more difficult problem:
Given integers N and M,please answer sum of  X satisfies 1<=X<=N and (X,N)>=M.

 

算法:

   跟GCD(一)不同的是这题求得是满足gcd(x,n) >= m ,x的和。而由欧拉函数中的一个定理可以知道

 

所以,只要SUM(n = x * y) = y*α(y) / 2 * x 

因为要的是x的和,而我们是在把X先进行X / x处理的所以最后要在乘回上x得到原值。

 

 
#include <iostream>
#include <algorithm>
#include <cstdio>
#include <cstring>
#include <cmath>
using namespace std;typedef long long LL;
const int MOD = 1000000007;int euler_phi(int n){int k = (int)sqrt(n + 0.5);int ans = n;for(int i = 2;i <= k;++i) if(0 == n % i){ans = ans / i * (i - 1);while(0 == n % i) n /= i;}if(n > 1) ans = ans / n * (n - 1);return ans;
}LL getFact(int n,int m){LL res = 0;int k = sqrt(n + 0.5);LL tmp;for(int i = 1;i <= k;++i){if(0 == n % i){tmp = n / i;if(i >= m){LL t1 = tmp * euler_phi(tmp) / 2 % MOD;t1 = t1 ? t1 : 1;res = (res + t1 * i) % MOD;}if(tmp >= m && i != tmp) {LL t1 = i * euler_phi(i) / 2 % MOD;t1 = t1 ? t1 : 1;res = (res + t1 * tmp) % MOD;}}}return res >= MOD ? res%MOD : res;
}int main()
{int T,n,m;scanf("%d",&T);while(T--){scanf("%d%d",&n,&m);printf("%lld\n",getFact(n,m));}return 0;
}

 

这篇关于HDU 2588 GCD GCD问题总结的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/957430

相关文章

Kubernetes常用命令大全近期总结

《Kubernetes常用命令大全近期总结》Kubernetes是用于大规模部署和管理这些容器的开源软件-在希腊语中,这个词还有“舵手”或“飞行员”的意思,使用Kubernetes(有时被称为“... 目录前言Kubernetes 的工作原理为什么要使用 Kubernetes?Kubernetes常用命令总

关于@MapperScan和@ComponentScan的使用问题

《关于@MapperScan和@ComponentScan的使用问题》文章介绍了在使用`@MapperScan`和`@ComponentScan`时可能会遇到的包扫描冲突问题,并提供了解决方法,同时,... 目录@MapperScan和@ComponentScan的使用问题报错如下原因解决办法课外拓展总结@

MybatisGenerator文件生成不出对应文件的问题

《MybatisGenerator文件生成不出对应文件的问题》本文介绍了使用MybatisGenerator生成文件时遇到的问题及解决方法,主要步骤包括检查目标表是否存在、是否能连接到数据库、配置生成... 目录MyBATisGenerator 文件生成不出对应文件先在项目结构里引入“targetProje

C#使用HttpClient进行Post请求出现超时问题的解决及优化

《C#使用HttpClient进行Post请求出现超时问题的解决及优化》最近我的控制台程序发现有时候总是出现请求超时等问题,通常好几分钟最多只有3-4个请求,在使用apipost发现并发10个5分钟也... 目录优化结论单例HttpClient连接池耗尽和并发并发异步最终优化后优化结论我直接上优化结论吧,

Java内存泄漏问题的排查、优化与最佳实践

《Java内存泄漏问题的排查、优化与最佳实践》在Java开发中,内存泄漏是一个常见且令人头疼的问题,内存泄漏指的是程序在运行过程中,已经不再使用的对象没有被及时释放,从而导致内存占用不断增加,最终... 目录引言1. 什么是内存泄漏?常见的内存泄漏情况2. 如何排查 Java 中的内存泄漏?2.1 使用 J

numpy求解线性代数相关问题

《numpy求解线性代数相关问题》本文主要介绍了numpy求解线性代数相关问题,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧... 在numpy中有numpy.array类型和numpy.mat类型,前者是数组类型,后者是矩阵类型。数组

解决systemctl reload nginx重启Nginx服务报错:Job for nginx.service invalid问题

《解决systemctlreloadnginx重启Nginx服务报错:Jobfornginx.serviceinvalid问题》文章描述了通过`systemctlstatusnginx.se... 目录systemctl reload nginx重启Nginx服务报错:Job for nginx.javas

Redis缓存问题与缓存更新机制详解

《Redis缓存问题与缓存更新机制详解》本文主要介绍了缓存问题及其解决方案,包括缓存穿透、缓存击穿、缓存雪崩等问题的成因以及相应的预防和解决方法,同时,还详细探讨了缓存更新机制,包括不同情况下的缓存更... 目录一、缓存问题1.1 缓存穿透1.1.1 问题来源1.1.2 解决方案1.2 缓存击穿1.2.1

vue解决子组件样式覆盖问题scoped deep

《vue解决子组件样式覆盖问题scopeddeep》文章主要介绍了在Vue项目中处理全局样式和局部样式的方法,包括使用scoped属性和深度选择器(/deep/)来覆盖子组件的样式,作者建议所有组件... 目录前言scoped分析deep分析使用总结所有组件必须加scoped父组件覆盖子组件使用deep前言

解决Cron定时任务中Pytest脚本无法发送邮件的问题

《解决Cron定时任务中Pytest脚本无法发送邮件的问题》文章探讨解决在Cron定时任务中运行Pytest脚本时邮件发送失败的问题,先优化环境变量,再检查Pytest邮件配置,接着配置文件确保SMT... 目录引言1. 环境变量优化:确保Cron任务可以正确执行解决方案:1.1. 创建一个脚本1.2. 修