codeforces 75C C. Modified GCD(二分)

题目链接:

codeforces 75C


题目大意:

给出两个数,查询[l,r]内这两个数的gcd


题目分析:

对这两个数的cd进行打表,然后二分查找即可。


AC代码:

#include <iostream>
#include <algorithm>
#include <cstring>
#include <cstdio>
#include <vector>

using namespace std;

int a,b,n,l,r;
vector<int> v;

int bsearch ( int x , int y )
{
    int l = 0 , r = v.size()-1,mid;
    //cout << "YES : " << l << " " <<r << endl;
    while ( l != r )
    {
        mid = (l+r+1)>>1;
        //cout << v[mid] << " " << l << " " << r <<" " <<y << endl;
        if ( v[mid] <= y ) l = mid;
        else r = mid-1;
    }
    if ( v[l] >= x ) return v[l];
    return -1;
}

int main ( )
{
    while (~scanf ("%d%d" , &a , &b ) )
    {
        for ( int i = 1 ; i*i <= a ; i++ )
        {
            if ( a%i ) continue;
            if ( b%i == 0 ) v.push_back ( i );
            int x = a/i;
            if ( i == x ) continue;
            if ( b%x == 0 ) v.push_back ( x );
        }
        sort ( v.begin() , v.end());
        scanf ("%d" , &n );
        while ( n-- )
        {
            scanf ( "%d%d" , &l , &r );
            printf ( "%d\n" , bsearch ( l , r ));
        }
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值