博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU 5019 Revenge of GCD gcd+枚举因子
阅读量:3905 次
发布时间:2019-05-23

本文共 1491 字,大约阅读时间需要 4 分钟。

Problem Description

In mathematics, the greatest common divisor (gcd), also known as the greatest common factor (gcf), highest common factor (hcf), or greatest common measure (gcm), of two or more integers (when at least one of them is not zero), is the largest positive integer that divides the numbers without a remainder.

---Wikipedia
Today, GCD takes revenge on you. You have to figure out the k-th GCD of X and Y.

 

 

Input

The first line contains a single integer T, indicating the number of test cases.

Each test case only contains three integers X, Y and K.
[Technical Specification]
1. 1 <= T <= 100
2. 1 <= X, Y, K <= 1 000 000 000 000

 

 

Output

For each test case, output the k-th GCD of X and Y. If no such integer exists, output -1.

 

 

Sample Input

 

3

2 3 1

2 3 2

8 16 3

 

 

Sample Output

 

1

-1

2

代码及注释如下:

/*题意:求两个数a,b公共的从大到小的第k个因子...先求出a,b的Gcd后枚举求Gcd的因子....为啥呢...因为a,b都能整除Gcd,所以a,b肯定能够整除Gcd的因子...用的优先队列储存因子....注意数据要用long long int .....*/#include 
#include
#include
#include
#include
using namespace std;int t;long long int x,y,k;priority_queue
q;long long int gcd (long long int a,long long int b){ return b? gcd(b,a%b):a;}void Clear(){ while (!q.empty()) q.pop();}int main(){ scanf("%d",&t); while (t--) { Clear(); scanf("%lld%lld%lld",&x,&y,&k); long long int Gcd=gcd(x,y); q.push(Gcd); if(Gcd!=1) { q.push(1); for (long long int i=2;i*i<=Gcd;i++) { if(Gcd%i==0) { q.push(i); if(i*i!=Gcd) { q.push(Gcd/i); } } } } if(q.size()

 

转载地址:http://kaaen.baihongyu.com/

你可能感兴趣的文章
android简单demo学习系例之菜单实现
查看>>
显示python库路径
查看>>
android简单demo学习系例之排版(LinearLayout)[xml-based]
查看>>
J2ME相关的开源项目
查看>>
android简单demo学习系例之排版(TableLayout)[code-based]
查看>>
android简单demo学习系例之排版(TableLayout)[xml-based]
查看>>
bash日期格式转换(去掉无意义的零)的可选方法
查看>>
常用计算机端口解释
查看>>
转载)保护眼睛,把电脑窗口背景设置成绿颜色
查看>>
FireFox 的强大Web开发插件
查看>>
ANT的基础介绍
查看>>
MIME相关
查看>>
WAP1.0与WAP2.0页面的DTD
查看>>
如何学好C++语言
查看>>
包的设计原则
查看>>
回顾时光 详解HTML的发展史
查看>>
用移动硬盘安装win7
查看>>
MinGW与Cygwin
查看>>
C/C++/VC++的好网站
查看>>
用WEB标准进行开发
查看>>