POJ2115
Posted penn000
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了POJ2115相关的知识,希望对你有一定的参考价值。
C Looooops
Time Limit: 1000MS | Memory Limit: 65536K | |
Total Submissions: 30895 | Accepted: 8939 |
Description
A Compiler Mystery: We are given a C-language style for loop of type
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.
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.
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
1 #include <iostream> 2 #define ll long long 3 4 using namespace std; 5 6 ll ex_gcd(ll a, ll b, ll& x, ll& y){ 7 if(b == 0){ 8 x = 1; 9 y = 0; 10 return a; 11 } 12 ll ans = ex_gcd(b, a%b, x, y); 13 ll tmpx = x; 14 x = y; 15 y = tmpx-a/b*y; 16 return ans; 17 } 18 19 int main() 20 { 21 int a, b, c, k; 22 while(cin>>a>>b>>c>>k){ 23 if(!a&&!b&&!c&&!k)break; 24 ll x, y; 25 ll A = c; 26 ll B = b-a; 27 ll n = 1LL<<k; 28 ll gcd = ex_gcd(A, n, x, y); 29 if(B%gcd != 0) 30 cout<<"FOREVER"<<endl; 31 else{ 32 x = (x*(B/gcd))%n; 33 x = (x%(n/gcd)+n/gcd)%(n/gcd); 34 cout<<x<<endl; 35 } 36 } 37 return 0; 38 }
以上是关于POJ2115的主要内容,如果未能解决你的问题,请参考以下文章