hdu-5019 Revenge of GCD

Posted fzl194

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hdu-5019 Revenge of GCD相关的知识,希望对你有一定的参考价值。

题目链接:

http://acm.hdu.edu.cn/showproblem.php?pid=5019

题目大意:

求A和B的第k个gcd

解题思路:

直接求出A和B的gcd,A和B的第k个gcd就是A和B的gcd的第k个因子

 1 #include<bits/stdc++.h>
 2 using namespace std;
 3 typedef long long ll;
 4 const int maxn = 1e5 + 10;
 5 ll a[maxn];
 6 int main()
 7 {
 8     int T;
 9     cin >> T;
10     while(T--)
11     {
12         ll x, y, k, tot = 0;
13         scanf("%lld%lld%lld", &x, &y, &k);
14         ll g = __gcd(x, y);
15         for(ll i = 1; i * i <= g; i++)
16         {
17             if(g % i == 0)
18             {
19                 a[tot++] = i;
20                 if(i * i != g)a[tot++] = g / i;
21             }
22         }
23         if(k > tot)printf("-1\n");
24         else
25         {
26             sort(a, a + tot);
27             k = tot - k + 1;
28             printf("%lld\n", a[k - 1]);
29         }
30     }
31     return 0;
32 }

 

以上是关于hdu-5019 Revenge of GCD的主要内容,如果未能解决你的问题,请参考以下文章

UVA-12333 Revenge of Fibonacci(竖式加法模拟 & 字典树)

TOJ 3820 Revenge of Fibonacci(大数+trie)

hdu4099 Revenge of Fibonacci

UVA-12333 Revenge of Fibonacci

HDU - 4995 - Revenge of kNN

UVa12333 Revenge of Fibonacci