码迷,mamicode.com
首页 > 其他好文 > 详细

Codeforces . C.Neko does Maths

时间:2019-07-20 23:34:46      阅读:96      评论:0      收藏:0      [点我收藏+]

标签:sts   from   情况   def   his   msu   trouble   ali   long   

题目描述:

C. Neko does Maths
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Neko loves divisors. During the latest number theory lesson, he got an interesting exercise from his math teacher.

Neko has two integers aa and bb. His goal is to find a non-negative integer kk such that the least common multiple of a+ka+k and b+kb+k is the smallest possible. If there are multiple optimal integers kk, he needs to choose the smallest one.

Given his mathematical talent, Neko had no trouble getting Wrong Answer on this problem. Can you help him solve it?

Input

The only line contains two integers aa and bb (1a,b1091≤a,b≤109).

Output

Print the smallest non-negative integer kk (k0k≥0) such that the lowest common multiple of a+ka+k and b+kb+k is the smallest possible.

If there are many possible integers kk giving the same value of the least common multiple, print the smallest one.

Examples
input
Copy
6 10
output
Copy
2
input
Copy
21 31
output
Copy
9
input
Copy
5 10
output
Copy
0
Note

In the first test, one should choose k=2k=2, as the least common multiple of 6+26+2 and 10+210+2 is 2424, which is the smallest least common multiple possible.

思路:

刚开始拿到题:首先看了看1秒限时,时间快完了,我就抱着试一试的心态,用欧几里得求最大公约数的方法,把k从0一直循环到1000000(大概一秒钟)来求最大值,他时间要是够长我就一直算下去 ,看能够算到那一个测试点。

结束后:试着推一推。

设a=x1*g,b=x2*g;(g为a和b的最大公因数,x1,x2为系数)。a‘=x1*g+k,b‘=x2*g+k,则a‘-b‘=a-b=g(x1-x2);

因为a-b是个定值,现在题目要求的是将a和b一起加上某个数值后的公倍数最小。又因为gcd(a‘,b‘)=gcd(a‘-b‘,a‘)=gcd(a-b,b‘)(证明提示见上方的式子)。

也就是说,现在我们要求的是(a‘*b‘)/gcd(a‘,b‘)=(a‘*b‘)/gcd(b-a,b‘);要这个式子最小,怎么办?

已知的是b-a的值,目标式的分母是b-a和b‘的最大公因数,那么也是b-a的因数,因为b-a的因数有限,可以枚举出,那么对于每一个因数i,就设它是gcd(b-a,b‘),就可以找到相应的b‘,即让i成为b-a和b‘的最大公因数。可以求出k值,也就是b加上k能够使i成为其因数,有了k值就有了目标式的所有值,求出答案。小心数据范围和求因数时选择根号将时间减半以避免超时,还有就是一种特殊情况需要单独讨论,a-b=0时,上面的过程中会出现被0除的错误。

知识点:gcd

代码:

 1 #include <iostream>
 2 #include <cmath>
 3 using namespace std;
 4 long long a;
 5 long long b;
 6 long long ab;
 7 long long k;
 8 long long gcd(long long a,long long b)
 9 {
10     long long r = a%b;
11     if(r==0) return b;
12     return gcd(b,r);
13 }
14 int main()
15 {
16     cin >> a >> b;
17     if(a<b) swap(a,b);
18     ab = a-b;
19     //cout << "ab " << ab << endl;
20     long long m = a*b/gcd(a,b);
21     long long p = 0;
22     if(ab!=0)
23     {
24         for(int i = 1; i<=sqrt(ab)+1; i++)
25         {
26             if(ab%i==0)
27             {
28                 //cout << i << endl;
29                 k = i-a%i;
30                 //cout << "k " << k << endl;
31                 long long nm = (a+k)*(b+k)/gcd(a+k,b+k);
32                 if(nm<m)
33                 {
34                     m = nm;
35                     p = k;
36 
37                 }
38                 k = ab/i-a%(ab/i);
39                 //cout << "k" << endl;
40                 nm = (a+k)*(b+k)/gcd(a+k,b+k);
41                 if(nm<m)
42                 {
43                     m = nm;
44                     p = k;
45 
46                 }
47             }
48         }
49     }
50     cout << p << endl;
51     return 0;
52 }

 

Codeforces . C.Neko does Maths

标签:sts   from   情况   def   his   msu   trouble   ali   long   

原文地址:https://www.cnblogs.com/zhanhonhao/p/11219460.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!