程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> POJ 1061 青蛙的約會 擴展歐幾裡得,poj1061

POJ 1061 青蛙的約會 擴展歐幾裡得,poj1061

編輯:C++入門知識

POJ 1061 青蛙的約會 擴展歐幾裡得,poj1061


擴展歐幾裡得模板套一下就A了,不過要注意剛好整除的時候,代碼中有注釋

#include <iostream>
#include <cstdio>
#include <cstring>
#include <cmath>
#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, y, x);
   ll t = x;
   y = y - a/b*t;
   return r;
}
bool modular_linear_equation(ll a, ll b, ll n) {
    ll x, y, x0, i;
    ll d = exgcd(a, n, x, y);
    if (b%d)
    {
        printf("Impossible\n");
        return false;
    }
    x0 = x*(b/d)%n; //x0為方程的一個特解,可以為正也可以為負。題目要求的是最小的非負數
    ll ans;
    if(x0<0)
    {
        ans=x0;
        for(i = 0;ans<0; i++)
            ans=(x0 + i*(n/d))%n;
    }
    else if(x0>0)
    {
        ans=x0;
        ll temp;
        for(i=0;ans>=0;i++)
        {
            temp=ans;
            ans=(x0 - i*(n/d))%n;
        }
        ans=temp;
    }
    else
        ans=n; //此時x0=0,但是結果一定會大於0,所以要加一個n
    printf("%I64d\n",ans);
    return true;
}
int main()
{
    //freopen("in.txt","r",stdin);
    //freopen("out.txt","w",stdout);
    ll x,y,m,n,L;
    while(~scanf("%I64d%I64d%I64d%I64d%I64d",&x,&y,&m,&n,&L))
    {
        ll temp1=m-n,temp2=y-x;
        if(temp1<0)
        {
            temp1=-1*temp1;
            temp2=-1*temp2;
        }
        modular_linear_equation(temp1,temp2,L);
    }
    return 0;
}

 

#include <iostream>
#include <cstdio>
#include <cstring>
#include <cmath>
#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, y, x);
   ll t = x;
   y = y - a/b*t;
   return r;
}
bool modular_linear_equation(ll a, ll b, ll n) {
    ll x, y, x0, i;
    ll d = exgcd(a, n, x, y);
    if (b%d)
    {
        printf("Impossible\n");
        return false;
    }
    x0 = x*(b/d)%n; //x0為方程的一個特解,可以為正也可以為負。題目要求的是最小的非負數
    ll ans;
    if(x0<0)
    {
        ans=x0;
        for(i = 0;ans<0; i++)
            ans=(x0 + i*(n/d))%n;
    }
    else if(x0>0)
    {
        ans=x0;
        ll temp;
        for(i=0;ans>=0;i++)
        {
            temp=ans;
            ans=(x0 - i*(n/d))%n;
        }
        ans=temp;
    }
    else
        ans=n;
    printf("%I64d\n",ans);
    return true;
}
int main()
{
    //freopen("in.txt","r",stdin);
    //freopen("out.txt","w",stdout);
    ll x,y,m,n,L;
    while(~scanf("%I64d%I64d%I64d%I64d%I64d",&x,&y,&m,&n,&L))
    {
        ll temp1=m-n,temp2=y-x;
        if(temp1<0)
        {
            temp1=-1*temp1;
            temp2=-1*temp2;
        }
        modular_linear_equation(temp1,temp2,L);
    }
    return 0;
}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved