-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmod_ops.cpp
60 lines (51 loc) · 1.04 KB
/
mod_ops.cpp
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
// Mod Operations /*{{{*/
void check2(int64_t &a){
if(a<0){
a = (a+MOD+MOD)%MOD;
}
}
void check1(int64_t &a, int64_t &b){
a%=MOD;
b%=MOD;
check2(a);
check2(b);
}
int64_t mul(int64_t a, int64_t b){
check1(a,b);
int64_t temp = (a*b)%MOD;
check2(temp);
return temp;
}
int64_t add(int64_t a, int64_t b){
check1(a,b);
int64_t temp = (a+b)%MOD;
check2(temp);
return temp;
}
int64_t sub(int64_t a, int64_t b){
check1(a,b);
int64_t temp = (a-b)%MOD;
check2(temp);
return temp;
}
int64_t inverse(int64_t a, int64_t uMOD = (int64_t)1e9+7ll) {
int64_t m0 = uMOD;
int64_t y = 0ll, x = 1ll;
if (uMOD == 1ll) return 0ll;
while (a > 1ll) {
int64_t q = a / uMOD;
int64_t t = uMOD;
uMOD = a % uMOD, a = t; t = y;
y = x - q * y;
x = t;
}
if (x < 0ll) x += m0;
return x;
}
int64_t div(int64_t a, int64_t b){
check1(a,b);
int64_t temp = (mul(a,inverse(b,MOD)))%MOD;
check2(temp);
return temp;
}
/*}}}*/