Uva 11889 Benefit (lcm与gcd)

题意:给你两个数,a,c,求出 lcm(a,b)==c 时的 b 的最小值

思路:我们知道一个性质 gcd(a,b)*lcm(a,b) = a*b

由此我们可以得到 b = gcd(a,b)*lcm(a,b)/a

那我们可以先用 lcm(a,b)/a 计算出假定的b值

如果 gcd(a.b)==1 那么b的最小值确定

如果 gcd(a,b)!=1 我们就要通过计算来找到

计算方法为 a=a/gcd(a,b) b=b*gcd(a.b)

样例:

4

6 12

2 6

32 1760

7 16

结果: 4 3 55 NO SOLUTION

#include <iostream>
#define ll long long
using namespace std;

int gcd(int a,int b)
{
    if(b==0) return a;
    else return gcd(b,a%b);
}

int main()
{
    int t;
    cin>>t;
    while(t--)
    {
        int a,c;
        cin>>a>>c;
        if(c%a!=0)
        {
            cout<<"NO SOLUTION"<<endl;
            continue;
        }
        int ans=c/a;
        int k=gcd(a,ans);
        while(k!=1)
        {
            a=a/k;
            ans=ans*k;
            k=gcd(a,ans);

        }
        cout<<ans<<endl;
    }
    return 0;
}
时间: 2024-10-09 13:01:28

Uva 11889 Benefit (lcm与gcd)的相关文章

Uva 11889 - Benefit( 数论 )

Uva 11889 - Benefit( 数论 ) 题意: calculate the lowest integer B such that LCM(A, B) = C 分析: LCM(A,B) = C = A*B/GCD(A,B)C*GCD(A,B) = A*BC/A = B/GCD(A,B)如果C%A != 0 无解否则, 令t = C/AB = t * GCD(A,B) 即B 一定是 t 的整数倍从t开始枚举B #include <cstdio> typedef long long LL

UVA 11889 Benefit

11889 Benefit 题意: 给出T(T ≤ 100000)组数据:每组数据中给出A,C (1 ≤ A, C ≤ 10e7):已知LCM(A,B)=C,求最小的B 如果无解的话,输出 NO SOLUTION 思路: 比较难懂,可以多思考几遍.首先b=c/a;如果b不是int;直接无解:然后循环(对A和B求GCD的一值,再A/=值)直到那个值为1: 反例:12 16 48,顺便借这个例子分析一下:b=c/a=48/12=4,12和4的LCM是12不是48因为他们的有GCD影响,然后GCD的那

UVa 11889 (GCD) Benefit

好吧,被大白书上的入门题给卡了.=_=|| 已知LCM(A, B) = C,已知A和C,求最小的B 一开始我想当然地以为B = C / A,后来发现这时候的B不一定满足gcd(A, B) = 1 A要不断地除去gcd(A, B),直到满足gcd(A, B) = 1 B最后就应该乘上A除去的值 1 #include <cstdio> 2 3 typedef long long LL; 4 5 LL gcd(LL a, LL b) 6 { return b == 0 ? a : gcd(b, a%

UVa 11889 最小公倍数

https://vjudge.net/problem/UVA-11889 题意: 输入两个整数A和C,求最小的整数B使得lcm(A,B)=C. 思路: 首先C是A的公倍数,如果C%A不为0肯定是无解的. 接下来先让B=C/A,求g=gcd(A,B),如果g不为1的话,那么A.B的最小公倍数就是A*B/g,不等于c. 所以我们要去掉这个g,也就是让A/g,B*g. 1 #include<iostream> 2 #include<cstdio> 3 #include<cmath&

数论 UVA 11889

有关数论的题目,题目大意是给你两个数a和c,c为a和另一个数b的最小公倍数,要求你求出b的最小值.由最大公约数gcd(a,b)和最小公倍数lcm(a,b)之间的关系可知,lcm(a,b)*gcd(a,b)=a*b; 则b=lcm(a,b)*gcd(a,b)/a,b=c*gcd(a,b)/a,b/gcd(a,b)=c/a.因为c/a是b除去gcd(a,b)后的部分.若gcd(a,c/a)=1,就表明c/a就是我们要求的答案:否则,就说明c/a小于b,需要还原.还原 的过程中,首先求出gcd(a,c

UVa 11426 (欧拉函数 GCD之和) GCD - Extreme (II)

题意: 求sum{gcd(i, j) | 1 ≤ i < j ≤ n} 分析: 有这样一个很有用的结论:gcd(x, n) = i的充要条件是gcd(x/i, n/i) = 1,因此满足条件的x有phi(n/i)个,其中Phi为欧拉函数. 所以枚举i和i的倍数n,累加i * phi(n/i)即可. 1 #include <cstdio> 2 typedef long long LL; 3 4 const int maxn = 4000000; 5 6 int phi[maxn + 10]

UVA数学入门训练Round1[6]

UVA - 11388 GCD LCM 题意:输入g和l,找到a和b,gcd(a,b)=g,lacm(a,b)=l,a<b且a最小 g不能整除l时无解,否则一定g,l最小 #include <iostream> #include <cstdio> #include <cstring> #include <algorithm> #include <cmath> using namespace std; typedef long long ll

UVA - 11388 GCD LCM

II U C   ONLINE   C ON TEST   2 008 Problem D: GCD LCM Input: standard input Output: standard output The GCD of two positive integers is the largest integer that divides both the integers without any remainder. The LCM of two positive integers is the

Problem D: GCD LCM

tip:当初自己是想复杂了,什么遍历求解,枚举之类的,其实很简单的 要求他的最大GCD和LCM,如果GCD是LCM的因数,那么不可能存在这样的数,否则输出这俩个数就行了. 因为既要保证GCD最小,又要保证LCM最大. 题目链接: https://uva.onlinejudge.org/external/113/11388.html 题意: 给两个数,求最小GCD和最大LCM The GCD of two positive integers is the largest integer that