POJ 2115 C Looooops

来源:互联网 发布:景观施工图 软件 编辑:程序博客网 时间:2024/05/16 07:39

扩展GCD。。。一定要(1L<<k),不然k=31是会出错的 。。。。

                       C Looooops
Time Limit: 1000MS Memory Limit: 65536KTotal Submissions: 15444 Accepted: 3941

Description

A Compiler Mystery: We are given a C-language style for loop of type 
for (variable = A; variable != B; variable += C)
statement;
I.e., a loop which starts by setting variable to value A and while variable is not equal to B, repeats statement followed by increasing the variable by C. We want to know how many times does the statement get executed for particular values of A, B and C, assuming that all arithmetics is calculated in a k-bit unsigned integer type (with values 0 <= x < 2k) modulo 2k

Input

The input consists of several instances. Each instance is described by a single line with four integers A, B, C, k separated by a single space. The integer k (1 <= k <= 32) is the number of bits of the control variable of the loop and A, B, C (0 <= A, B, C < 2k) are the parameters of the loop. 

The input is finished by a line containing four zeros. 

Output

The output consists of several lines corresponding to the instances on the input. The i-th line contains either the number of executions of the statement in the i-th instance (a single integer number) or the word FOREVER if the loop does not terminate. 

Sample Input

3 3 2 16
3 7 2 16
7 3 2 16
3 4 2 16
0 0 0 0

Sample Output

0
2
32766
FOREVER

Source

CTU Open 2004 

 

 1 #include <iostream> 2 #include <cstdio> 3 #include <cstring> 4  5 using namespace std; 6  7 typedef long long int LL; 8  9 inline LL P(LL k){return (1LL<<k);}10 11 LL GCD(LL a,LL b)12 {13     return b==0?a:GCD(b,a%b);14 }15 16 LL EX_GCD(LL a,LL b,LL& x,LL& y)17 {18     if(b==0)19     {20         x=1;y=0;21         return a;22     }23     else24     {25         int ret=EX_GCD(b,a%b,x,y);26         int t=x;27         x=y; y=t-a/b*y;28         return ret;29     }30 }31 32 int main()33 {34     LL a,b,c,k;35     while(scanf("%I64d%I64d%I64d%I64d",&a,&b,&c,&k)!=EOF)36     {37         if(a==0&&b==0&&c==0&&k==0) break;38         LL Aa=P(k),Bb=-c,Cc=a-b;39         int d=GCD(Aa,Bb);40         if(Cc%d!=0)41         {42             puts("FOREVER");43             continue;44         }45         LL A=Aa/d,B=Bb/d,C=Cc/d,X,Y;46         EX_GCD(A,B,X,Y);47         X=X*C;Y=Y*C;48         if(A<0) A=-A;49         printf("%I64d\n",(Y%A+A)%A);50     }51     return 0;52 }

 

0 0
原创粉丝点击