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

________________

题意:

给出x , y 求 第k大的公约数(x,y,k <= 1e12)。

看到这题数据范围直接吓尿,一开始写了个 求最大公约数后枚举约数,意料之中的T了。

然后想到,第k大的公约数,其实就是最大公约数的第k个因子。

 如果枚举最大公约数的因子,最大公约数可能有1e12那么大,显然会t.

那么可以考虑只 枚举一半的因子(因为1e12的约数最多 2* sqrt(1e12) 也就是2e6左右( 这里有点问题,我看别人有用1e6存的,我不知道我想的对不对) )

这样,可以用数组存起来,只要

for( int i = 1 ; i <=sqrt( gcd (x,y) ) ; i++)

{

    if( gcd(x,y) % i == 0 )

        array[cnt++] = i ;

    if( gcd (x,y) / i == 0 )

    array[cnt++] = gcd(x,y) / i ;

}

}

然后对这个数组排序后从大到小取就可以了。别人的代码A了自己的T了一下午。

然后又看到别人的思路

先在  1 - sqrt( gcd(x,y) ) 中找,

第n个小的约数所对应的 gcd(x,y) / n 也就是第n个大的约数。

找不到继续在

( gcd(x,y) ) - 1 区间中找 ,找到的也就是第n个大的约数 ( 这里我说不太清楚,不太好理解,大概可以理解为gcd(x,y)先找一边的约数再找另一边)

代码如下:

#include<iostream>

#include<cstdio>

#include<cmath>

#include<algorithm>

using namespace std;

typedef long long int ll ;

ll gcd ( ll a , ll b )

{

        if ( b == 0 ) return a ;

        else

               gcd(b , a % b );

}

int main()

{

        int t ;

        cin>> t;

        for( int z = 1 ; z <= t ; z++)

        {

               llx,y,k;

               cin>> x >> y >> k ;

               llt = gcd(x,y);

               llnum = 0 , v;

               for( int i = 1 ; i <= sqrt(t) ;i++)

               {

                       if( t % i == 0 )

                       {

                               num++;

                               v=t/i;

                       }

                       if( num == k )

                               break ;

               }

               if( num == k )

                       {cout<< v << endl ; continue;}

               else

                       for( int i = sqrt(t) ; i >=1 ; i--)

                       {

                               if( i*i == t)

                                      continue;

                               if( t % i == 0 )

                                      {

                                              num++;

                                              v=i;

                                      }

                               if( num == k)

                                      break ;

                       }

               if( num == k )

                       cout<< v << endl ;

               else cout << "-1" << endl ;

        }

return 0 ; 

}

——————

不知道为什么T了一下午,照猫画虎对着别人思路都T,重新好几次还T。然后晚上饭后一怒之下又重写一遍莫名AC。。

Revenge of GCD HDU5019的更多相关文章

  1. HDOJ 5019 Revenge of GCD

    Revenge of GCD In mathematics, the greatest common divisor (gcd), also known as the greatest common ...

  2. 数学--数论--HDU 5019 revenge of GCD

    Revenge of GCD Problem Description In mathematics, the greatest common divisor (gcd), also known as ...

  3. HDU 5019 Revenge of GCD(数学)

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5019 Problem Description In mathematics, the greatest ...

  4. BestCoder10 1002 Revenge of GCD(hdu 5019) 解题报告

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5019 题目意思:给出 X 和 Y,求出 第 K 个 X 和 Y 的最大公约数. 例如8 16,它们的公 ...

  5. HDU 5019 Revenge of GCD

    题解:筛出约数,然后计算即可. #include <cstdio> #include <algorithm> typedef long long LL; LL a1[10000 ...

  6. hdu 5018 Revenge of GCD

    题意: 给你两个数:X和Y  .输出它们的第K大公约数.若不存在输出 -1 数据范围: 1 <= X, Y, K <= 1 000 000 000 000 思路: 它俩的公约数一定是gcd ...

  7. hdu 5019(第K大公约数)

    Revenge of GCD Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)To ...

  8. Objective-C三种定时器CADisplayLink / NSTimer / GCD的使用

    OC中的三种定时器:CADisplayLink.NSTimer.GCD 我们先来看看CADiskplayLink, 点进头文件里面看看, 用注释来说明下 @interface CADisplayLin ...

  9. iOS 多线程之GCD的使用

    在iOS开发中,遇到耗时操作,我们经常用到多线程技术.Grand Central Dispatch (GCD)是Apple开发的一个多核编程的解决方法,只需定义想要执行的任务,然后添加到适当的调度队列 ...

随机推荐

  1. 线程androidAndroid ConditionVariable的用法

    查了好多资料,发现还是不全,干脆自己整理吧,至少保证在我的做法正确的,以免误导读者,也是给自己做个记录吧! 在Android开辟中,如果需要线程同步,可以使用Java系统库的wait()和notify ...

  2. 用scikit-learn研究局部线性嵌入(LLE)

    在局部线性嵌入(LLE)原理总结中,我们对流形学习中的局部线性嵌入(LLE)算法做了原理总结.这里我们就对scikit-learn中流形学习的一些算法做一个介绍,并着重对其中LLE算法的使用方法做一个 ...

  3. css修改滚动条默认样式

    之前因为公司项目需要,在网上找到的: 直接上代码了 html代码 <div class="inner"> <div class="innerbox&qu ...

  4. JS算法之快排&冒泡

    1.快速排序思想: 1.1 先找数组的最中间的一个数为基准 1.2 把数组通过此基准分为小于基准的left数组和大于基准的right数组, 1.3 递归重复上面的两个步骤, 代码如下: functio ...

  5. Python json解析

    #encoding: utf-8 ''' Author:Siukwan ''' import sys reload(sys) sys.setdefaultencoding('utf8') import ...

  6. Access一些常用的SQL语句

    您可以将 Microsoft Office Access 2013 用作创建.修改数据库以及处理数据的工具,还可将 Office Access 2013 用作服务器数据库管理系统(如 Microsof ...

  7. jmeter压力测试的简单实例+badboy脚本录制(一个简单的网页用户登录测试的结果)

    JMeter的安装:在网上下载,在下载后的zip解压后,在bin目录下找到JMeter.bat文件,双击就可以运行JMeter. http://jmeter.apache.org/ 在使用jmeter ...

  8. Java 四舍五入并小数点后保存两位,千分位分隔

    import java.text.DecimalFormat; public class FileTest {    public static void main(String[] args) {  ...

  9. robotium测试

    作者:贺锐链接:https://www.zhihu.com/question/28466134/answer/40921012来源:知乎著作权归作者所有,转载请联系作者获得授权. 直接用自己的手机上就 ...

  10. 升级ruby

    1.安装 RVM RVM:Ruby Version Manager,Ruby版本管理器,包括Ruby的版本管理和Gem库管理(gemset) $ curl -L get.rvm.io | bash - ...