C Looooops

$C$ $Looooops$

$Description$


$$
Cx + A \equiv B \pmod {2^k}
$$

$Solution$

化简本式:
$$
Cx + 2^{k}y = B - A
$$
所以:
$$
a = C, b = 2^k, c = B - A, d = gcd(a, b)
$$
代入求解即可。

$Code:$

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#include<bits/stdc++.h>
//#include<tr1/unordered_map>
//#include"Bignum/bignum.h"
//#define lll bignum
#define ls(x) ( x << 1 )
#define rs(x) ( x << 1 | 1 )
//#define mid ( ( l + r ) >> 1 )
#define lowbit(x) ( x & -x )
#define debug(x) (cout << "#x = " << x << endl)
#define re register
#define For(i, j, k) for(re int i = (j); i <= (k); i++)
#define foR(i, j, k) for(re int i = (j); i >= (k); i--)
#define Cross(i, j, k) for(re int i = (j); i; i = (k))
using namespace std;
typedef long long ll;
const ll N = 100011;
const ll inf = 0x3f3f3f3f3f3f;

ll A, B, C, k;

namespace IO {

inline ll read() {
ll x = 0; bool f = 0; char ch = getchar();
for (; !isdigit (ch); ch = getchar()) f ^= (ch == '-');
for (; isdigit (ch); ch = getchar()) x = ( x << 3 ) + ( x << 1 ) + ( ch ^ 48 );
return f? -x: x;
}

inline void write( ll x ) {
if ( x < 0 ) putchar ( '-' ), x = -x;
if ( x > 9 ) write ( x / 10 );
putchar ( x % 10 | 48 );
}

inline void wrn ( ll x ) { write (x); putchar ( ' ' ); }

inline void wln ( ll x ) { write (x); putchar ( '\n' ); }

inline void wlnn ( ll x, ll y ) { wrn (x), wln (y); }

}

using namespace IO;

inline void exgcd ( ll a, ll b, ll &d, ll &x, ll &y ) {
if (b) exgcd ( b, a % b, d, y, x ), y -= a / b * x;
else d = a, x = 1, y = 0; return ;
}

int main() {
// freopen("c.in", "r", stdin);
// freopen("test.out", "w", stdout);
while ( cin >> A >> B >> C >> k && (A || B || C || k) ) {
ll a = C, b = 1ll << k, c = B - A;
ll d, x, y; exgcd ( a, b, d, x, y );
if (c % d) { puts("FOREVER"); continue; }
x = x * (c / d); b /= d; x = (x % b + b) % b; wln (x);
} return 0;
}

/*
3 3 2 16
3 7 2 16
7 3 2 16
3 4 2 16
0 0 0 0
*/

题目链接