POJ 1061 frog Dating (expanding Euclid)

Source: Internet
Author: User

Description

Two of the frogs met on the internet, and they chatted very happily, so they felt it was necessary to see one side. They were pleased to find that they lived on the same latitude line, so they agreed to jump westward until they met. But they forget a very important thing before they set out, neither to ask clearly the characteristics of each other, nor to meet the specific location. But the frogs are very optimistic, they feel as long as they have to jump in some direction, always meet each other. But unless the two frogs jump to the same point at the same time, they will never be able to meet. To help these two optimistic frogs, you are asked to write a procedure to determine if the two frogs will meet and when.
We have these two frogs are called Frog A and Frog B, and the latitude line on the longitude of 0 degrees at the origin, from east to West for the positive direction, the unit length of 1 meters, so that we get a first-to-last line. The starting point of setting Frog A is x, and Frog B's starting point coordinates are Y. Frog A can jump M m at a time, Frog B can jump n meters at a time, and two frogs will spend the same time jumping once. Latitude line total length l m. Now you have to find out how many times they have jumped before they meet.

Input

The input includes only one line of 5 integer x,y,m,n,l, where X≠y < 2000000000,0 < M, n < 2000000000,0 < L < 2100000000.

Output

Output the number of hops required to meet, and output a line of "impossible" if it is never possible to meet

Sample Input

1 2 3) 4 5

Sample Output

4


a given relationship has the formula "(X-y) +t* (m-n) =p*l" to derive the value of A,b,c and then perform EXGCD and modulo operations ,

Because X, Y has a result in the local global WA several times ...


#include <iostream> #include <algorithm> #include <cstdio> #include <cstring> #include < Cmath> #define LL Long long#define inf 0x3f3f3f3fusing namespace std; LL x, y; ll EXGCD (ll A,ll b) {    if (!b)    {        y=0;        X=1;        return A;    }    LL D=EXGCD (b,a%b);    LL g=x;    x=y;    Y=g-y* (A/b);    return D;} LL MoD (ll a,ll b) {    if (a>=0)        return a%b;    else        return a%b+b;} int main () {    LL n,m,k,i,j,l,a,b,d,x1,y1,c;    while (~SCANF ("%lld%lld%lld%lld%lld", &x,&y,&m,&n,&l))    {        a=n-m;        b=l;        c=x-y;        D=EXGCD (A, b);        if (c%d)        {            printf ("impossible\n");            Continue;        }        b/=d;//to make B smaller, accelerate running        x=mod (x*c/d,b),//a*x= (Identity) bmod (n)        printf ("%lld\n", x);    }    return 0;}


Copyright NOTICE: This article for Bo Master original article, without Bo Master permission not reproduced.

POJ 1061 Frog dating (extended Euclid)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.