Language:DefaultThe date of the frog
Time Limit: 1000MS |
|
Memory Limit: 10000K |
Total Submissions: 98005 |
|
Accepted: 18548 |
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 meetSample Input 1 2 3) 4 5
Sample Output 4
Source Zhejiang |
Problem-Solving ideas: Classical number theory, extended Euclidean algorithm.
AC Code:
#include <stdio.h> #include <math.h> #include <vector> #include <queue> #include <string> #include <string.h> #include <stdlib.h> #include <iostream> #include <algorithm>using Namespace Std;typedef long long LL; ll GCD (ll A,ll b) { if (b==0) return A; return gcd (b,a%b);} 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;} int main () { LL x,y,m,n,l; while (scanf ("%lld%lld%lld%lld%lld", &x,&y,&m,&n,&l)!=eof) { LL a= (n-m), b=l; LL c=x-y; LL R=GCD (A, b); if (c%r) { printf ("impossible\n"); Continue; } A/=r;b/=r;c/=r; LL s,k; EXGCD (a,b,s,k); S*=c; s%=b; while (s<0) s+=b; printf ("%lld\n", s); } return 0;}
Copyright NOTICE: This article is the original blogger articles, reproduced please indicate the source.
POJ frog Dating 1061 "classical number theory-extended Euclid"