POJ 2891 Strange Way to Express Integers(中国剩余定理)

题目链接:http://poj.org/problem?id=2891

#include <cstdio>
#include <cstring>
#include <cmath>
#include <ctime>
#include <cstdlib>
#include <queue>
#include <stack>
#include <string>
#include <iostream>
#include <algorithm>
using namespace std;
typedef long long ll;
ll exGcd(ll a,ll b,ll &x,ll &y)
{
    if(b == 0)
    {
        x = 1;
        y = 0;
        return a;
    }
    ll r=exGcd(b,a%b,x,y);
    ll t=x;
    x=y;
    y=t-a/b*y;
    return r;
}
ll minX;
ll d;
int lin(ll a,ll b,ll n)
{
    ll e;
    ll x, y;
    d = exGcd(a, n, x, y);
    if(b%d)
        return 0;
    b = b/d;
    e = n/d;
    minX = ((x*b) % e + e) % e;
    return 1;
}
int main()
{
    int k;
    while(~scanf("%d",&k))
    {
        ll result;
        ll a, r;
        ll a1, r1;
        int flag = 1;
        scanf("%lld %lld", &a, &r);
        if (a <= r)
            flag = 0;
        k--;
        while (k--)
        {
            scanf("%lld %lld", &a1, &r1);
            if (a1 <= r1 || !flag)
                flag = 0;
            else
            {
                flag = lin(a, r1-r, a1);//推导出方程 a*x + a1*y = r1-r
                if (flag==0)
                    continue;
                r = minX*a + r;
                a = a*a1/d;
                r = (r % a + a) % a;
            }
        }
        if (flag)
            printf("%lld\n", r);
        else
            printf("-1\n");
    }
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值