Modified GCD CodeForces - 75C【二分、预处理】

题目链接,很好的一道二分加预处理的题目。

题面

Well, here is another math class task. In mathematics, GCD is the greatest common divisor, and it's an easy task to calculate the GCD between two positive integers.

A common divisor for two positive numbers is a number which both numbers are divisible by.

But your teacher wants to give you a harder task, in this task you have to find the greatest common divisor d between two integers a and b that is in a given range from low to high (inclusive), i.e. low ≤ d ≤ high. It is possible that there is no common divisor in the given range.

You will be given the two integers a and b, then n queries. Each query is a range from low to high and you have to answer each query.

Input

The first line contains two integers a and b, the two integers as described above (1 ≤ a, b ≤ 109). The second line contains one integer n, the number of queries (1 ≤ n ≤ 104). Then n lines follow, each line contains one query consisting of two integers, low and high (1 ≤ low ≤ high ≤ 109).

Output

Print n lines. The i-th of them should contain the result of the i-th query in the input. If there is no common divisor in the given range for any query, you should print -1 as a result for this query.

Examples

Input

9 27
3
1 5
10 11
9 11

Output

3
-1
9

 

#include <iostream>
#include <cstdio>
#include <cmath>
#include <string>
#include <cstring>
#include <algorithm>
#include <limits>
#include <vector>
#include <stack>
#include <queue>
#include <set>
#include <map>
#define lowbit(x) ( x&(-x) )
using namespace std;
typedef long long ll;
ll gcd(ll a, ll b)
{
    if(b==0) return a;
    return gcd(b, a%b);
}
ll x,y,z;
vector<ll> v;
int main()
{
    while(scanf("%lld%lld",&x,&y)!=EOF)
    {
        v.clear();
        z=gcd(x, y);
        for(int i=1; i*i<=z; i++)
        {
            /*if(i==1)      //可千万别加这一步,加了就会发现upper_bound找有特殊样例(刚好在Test 11会wrong)
            {
                v.push_back(z);
                continue;
            }*/
            if(z%i==0)
            {
                v.push_back(z/i);
                v.push_back(i);
            }
        }
        sort(v.begin(), v.end());
        int T;
        scanf("%d",&T);
        while(T--)
        {
            ll e1,e2;
            scanf("%lld%lld",&e1,&e2);
            /*if(z==1)      //剪枝,随便加亦或者不加
            {
                printf("-1\n");
                continue;
            }*/
            ll p2=upper_bound(v.begin(), v.end(), e2)-v.begin()-1;
            ll res=v[p2];
            if(res<e1) printf("-1\n");
            else printf("%lld\n",res);
        }
    }
    return 0;
}

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Wuliwuliii

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值