POJ 2891 Strange Way to Express Integers【扩展欧几里德】【模线性方程组】

求解方程组

X%m1=r1

X%m2=r2

....

X%mn=rn

首先看下两个式子的情况

X%m1=r1

X%m2=r2

联立可得

m1*x+m2*y=r2-r1

用ex_gcd求得一个特解x‘

得到X=x‘*m1+r2

X的通解X‘=X+k*LCM(m1,m2)

上式可化为:X‘%LCM(m1,m2)=X

到此即完成了两个式子的合并,再将此式子与后边的式子合并,最后的得到的X‘即为答案的通解,求最小整数解即可。

#include<stdio.h>
#include<string.h>
typedef long long ll;
ll ex_gcd(ll a,ll b,ll &x,ll &y){
    if(!b){
        x=1,y=0;
        return a;
    }
    ll ans=ex_gcd(b,a%b,y,x);
    y-=a/b*x;
    return ans;
}
int main(){
    int n;
    ll a,b,c1,c2,c,x,y,d;
    while(~scanf("%d",&n)){
        scanf("%lld%lld",&a,&c1);
        int f=1;
        for(int i=1;i<n;i++){
            scanf("%lld%lld",&b,&c2);
            d=ex_gcd(a,b,x,y);
            c=c2-c1;
            if(c%d)    f=0;
            c/=d;ll t=b/d;
            x=((x*c)%t+t)%t;
            c1+=a*x;//X
            a=a/d*b;//lcm
            c1%=a;
        }
        if(c1<0)    c1+=a;
        if(f)    printf("%lld\n",c1);
        else    printf("-1\n");
    }
    return 0;
}
时间: 2024-08-28 18:16:31

POJ 2891 Strange Way to Express Integers【扩展欧几里德】【模线性方程组】的相关文章

poj 2891 Strange Way to Express Integers (扩展gcd)

题目链接 题意:给k对数,每对ai, ri.求一个最小的m值,令m%ai = ri; 分析:由于ai并不是两两互质的, 所以不能用中国剩余定理. 只能两个两个的求. a1*x+r1=m=a2*y+r2联立得:a1*x-a2*y=r2-r1;设r=r2-r2; 互质的模线性方程组m=r[i](mod a[i]).两个方程可以合并为一个,新的a1为lcm(a1,a2), 新的r为关于当前两个方程的解m,然后再和下一个方程合并--.(r2-r1)不能被gcd(a1,a2)整除时无解. 怎么推出的看了好

POJ.2891.Strange Way to Express Integers(扩展CRT)

题目链接 扩展中国剩余定理:1(直观的).2(详细证明). #include <cstdio> #include <cctype> #define gc() getchar() typedef long long LL; const int N=1e6+5; LL n,m[N],r[N]; inline LL read() { LL now=0,f=1;register char c=gc(); for(;!isdigit(c);c=gc()) if(c=='-') f=-1; f

poj 2891 Strange Way to Express Integers

http://poj.org/problem?id=2891 这道题的题意是:给你多个模性方程组:m mod ai=ri 求最小的m: 中国剩余定理 1 #include <cstdio> 2 #include <cstring> 3 #include <algorithm> 4 #define ll long long 5 using namespace std; 6 7 ll gcd(ll a,ll b,ll &x,ll &y) 8 { 9 if(!

poj 2891 Strange Way to Express Integers (非互质的中国剩余定理)

Strange Way to Express Integers Time Limit: 1000MS   Memory Limit: 131072K Total Submissions: 9472   Accepted: 2873 Description Elina is reading a book written by Rujia Liu, which introduces a strange way to express non-negative integers. The way is

poj——2891 Strange Way to Express Integers

Strange Way to Express Integers Time Limit: 1000MS   Memory Limit: 131072K Total Submissions: 16839   Accepted: 5625 Description Elina is reading a book written by Rujia Liu, which introduces a strange way to express non-negative integers. The way is

POJ 2891 Strange Way to Express Integers 中国剩余定理MOD不互质数字方法

http://poj.org/problem?id=2891 711323 97935537 475421538 1090116118 2032082 120922929 951016541 15898 418373 161478614 149488440 1748022751 21618619576 810918992 241779667 1772616743 1953316358 125248280 2273149397 3849022001 2509433771 3885219405 35

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

http://poj.org/problem?id=2891 题意:求解一个数x使得 x%8 = 7,x%11 = 9; 若x存在,输出最小整数解.否则输出-1: ps: 思路:这不是简单的中国剩余定理问题,由于输入的ai不一定两两互质,而中国剩余定理的条件是除数两两互质. 这是一般的模线性方程组,对于 X mod m1=r1 X mod m2=r2 ... ... ... X mod mn=rn 首先,我们看两个式子的情况 X mod m1=r1-----------------------(

poj 2891 Strange Way to Express Integers (解模线性方程组)

链接:poj 2891 题意:有一个数x,给定k组ai和ri,使得x%ai=ri 求x最小为多少 分析:求解模线性方程组 x = a1(mod m1) x = a2(mod m2) x = a3(mod m3) 先求解方程组前两项. x=m1*k1+a1=m2*k2+a2 -> m1*k1+m2*(-k2)=a2-a1 这个方程可以通过欧几里得求解出最小正整数的k1 则x=m1*k1+a1 显然x为两个方程的最小正整数解. 则这两个方程的通解为 X=x+k*LCM(m1,m2) -> X=x(

Strange Way to Express Integers扩展欧几里德

#include <iostream> #include<stdio.h> #include<string.h> #include<queue> #include <math.h> #include<string.h> #include <algorithm> #define INF 1000000000 using namespace std; //typedef long long LL; long long ggcd