Codeforces 787A The Monster( 拓展欧几里德 )


链接:传送门

题意:ok 题意略o_%e7%81%ab%e7%8b%90%e6%88%aa%e5%9b%be_2017-05-25T02-56-00.049Z.png

思路:将问题转化成求 b + a * x = d + c * y,简单拓欧,但是需要注意的是 x >= 0 且 y >= 0


/*************************************************************************
    > File Name: codeforces787A.cpp
    > Author:    WArobot 
    > Blog:      http://www.cnblogs.com/WArobot/ 
    > Created Time: 2017年05月25日 星期四 09时38分50秒
 ************************************************************************/

#include<bits/stdc++.h>
using namespace std;

int exgcd(int a,int b,int &x,int &y){
    if( b == 0 ){
        x = 1; y = 0; return a;
    }
    int d = exgcd( b , a%b , x , y );
    int tmp = x;
    x = y;  y = tmp - a/b*y;
    return d;
}
int main(){
    int A, B, C, D;
    while(~scanf("%d%d%d%d",&A,&B,&C,&D)){
        int x , y;
        int d = exgcd( A , C , x , y );
        int c = D - B; 
        if( c % d != 0 )    printf("-1\n");
        else{
            x = x*(c/d);
            x = (x%(C/d) + (C/d))%(C/d);
            y = (A*x + B - D)/C;
            while( y < 0 ){     // 同时保证x > 0 , y > 0 
                x = x + C/d;
                y = (A*x + B - D)/C;
            }
            printf("%d\n",B + A*x);
        }
    }
    return 0;
}

转载于:https://www.cnblogs.com/WArobot/p/6902563.html

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值