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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
use std::{
fmt,
ops::{Add, AddAssign, Deref, Div, DivAssign, Mul, MulAssign, Rem, RemAssign, Sub, SubAssign},
};
pub trait Modulus: Copy {
type Base: Copy
+ fmt::Display
+ fmt::Debug
+ Add<Output = Self::Base>
+ Sub<Output = Self::Base>
+ Mul<Output = Self::Base>
+ Div<Output = Self::Base>
+ Rem<Output = Self::Base>
+ AddAssign
+ SubAssign
+ MulAssign
+ DivAssign
+ RemAssign
+ Eq
+ Ord
+ Default
+ From<u8>;
fn modulus(self) -> Self::Base;
}
pub trait InvertibleModulus: Modulus {
fn inverse(self, value: ModInt<Self>) -> ModInt<Self>;
}
pub struct ModInt<M: Modulus>(M::Base, M);
impl<M: Modulus> ModInt<M> {
pub fn pow(self, rhs: usize) -> Self {
if rhs == 0 {
Self(M::Base::from(1) % self.1.modulus(), self.1)
} else if rhs == 1 {
self
} else if rhs % 2 == 0 {
let p = self.pow(rhs / 2);
p * p
} else {
self * self.pow(rhs - 1)
}
}
#[inline(always)]
pub fn inv(self) -> Self
where
M: InvertibleModulus,
{
self.modulus().inverse(self)
}
pub fn modulus(self) -> M {
self.1
}
pub fn into_inner(self) -> M::Base {
self.0
}
}
impl<M: Modulus> Clone for ModInt<M> {
fn clone(&self) -> Self {
Self(self.0, self.1)
}
}
impl<M: Modulus> Copy for ModInt<M> {}
impl<M: Modulus> Default for ModInt<M>
where
M: Default,
{
fn default() -> Self {
Self(Default::default(), Default::default())
}
}
impl<M: Modulus> fmt::Debug for ModInt<M> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{:?} (mod {:?})", self.0, self.1.modulus())
}
}
impl<M: Modulus> fmt::Display for ModInt<M> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{}", self.0)
}
}
impl<M: Modulus> PartialEq for ModInt<M> {
fn eq(&self, other: &Self) -> bool {
self.0 == other.0
}
}
impl<M: Modulus> Eq for ModInt<M> {}
impl<M: Modulus> From<u8> for ModInt<M>
where
M: Default,
{
fn from(val: u8) -> Self {
let modulus: M = Default::default();
Self(M::Base::from(val) % modulus.modulus(), modulus)
}
}
impl<M: Modulus> From<u64> for ModInt<M>
where
M: Default,
M::Base: From<u64>,
{
fn from(val: u64) -> Self {
let modulus: M = Default::default();
Self(M::Base::from(val) % modulus.modulus(), modulus)
}
}
impl<M: Modulus> Deref for ModInt<M> {
type Target = M::Base;
fn deref(&self) -> &M::Base {
&self.0
}
}
impl<M: Modulus> From<(M::Base, M)> for ModInt<M> {
fn from((val, modulus): (M::Base, M)) -> Self {
Self(val % modulus.modulus(), modulus)
}
}
impl<M: Modulus> Add for ModInt<M> {
type Output = Self;
fn add(self, rhs: Self) -> Self::Output {
Self((self.0 + rhs.0) % self.1.modulus(), self.1)
}
}
impl<M: Modulus> AddAssign for ModInt<M> {
fn add_assign(&mut self, rhs: Self) {
*self = *self + rhs;
}
}
impl<M: Modulus> Mul for ModInt<M> {
type Output = Self;
fn mul(self, rhs: Self) -> Self::Output {
Self((self.0 * rhs.0) % self.1.modulus(), self.1)
}
}
impl<M: Modulus> MulAssign for ModInt<M> {
fn mul_assign(&mut self, rhs: Self) {
*self = *self * rhs;
}
}
impl<M: Modulus> Sub for ModInt<M> {
type Output = Self;
fn sub(self, rhs: Self) -> Self::Output {
let mut l = self.0;
let r = rhs.0;
if l < r {
l += self.1.modulus();
}
Self(l - r, self.1)
}
}
impl<M: Modulus> SubAssign for ModInt<M> {
fn sub_assign(&mut self, rhs: Self) {
*self = *self - rhs;
}
}
impl<M: Modulus + InvertibleModulus> Div for ModInt<M> {
type Output = Self;
fn div(self, rhs: Self) -> Self::Output {
self * rhs.inv()
}
}
impl<M: Modulus + InvertibleModulus> DivAssign for ModInt<M> {
fn div_assign(&mut self, rhs: Self) {
*self = *self / rhs;
}
}
#[derive(Debug, Clone, Copy, Default)]
pub struct Mod1e9p7;
impl Modulus for Mod1e9p7 {
type Base = u64;
#[inline(always)]
fn modulus(self) -> u64 {
1_000_000_007
}
}
impl InvertibleModulus for Mod1e9p7 {
#[inline(always)]
fn inverse(self, value: ModInt<Self>) -> ModInt<Self> {
value.pow(self.modulus() as usize - 2)
}
}
#[derive(Debug, Clone, Copy)]
pub struct RuntimeModulus<T>(T);
#[derive(Debug, Clone, Copy)]
pub struct RuntimePrimeModulus<T>(T);
impl<T> Modulus for RuntimePrimeModulus<T>
where
T: Copy
+ fmt::Display
+ fmt::Debug
+ Add<Output = T>
+ Sub<Output = T>
+ Mul<Output = T>
+ Div<Output = T>
+ Rem<Output = T>
+ AddAssign
+ SubAssign
+ MulAssign
+ DivAssign
+ RemAssign
+ Eq
+ Ord
+ Default
+ From<u8>
+ Into<usize>,
{
type Base = T;
#[inline(always)]
fn modulus(self) -> T {
self.0
}
}
impl<T> InvertibleModulus for RuntimePrimeModulus<T>
where
T: Copy
+ fmt::Display
+ fmt::Debug
+ Add<Output = T>
+ Sub<Output = T>
+ Mul<Output = T>
+ Div<Output = T>
+ Rem<Output = T>
+ AddAssign
+ SubAssign
+ MulAssign
+ DivAssign
+ RemAssign
+ Eq
+ Ord
+ Default
+ From<u8>
+ Into<usize>,
{
#[inline(always)]
fn inverse(self, value: ModInt<Self>) -> ModInt<Self> {
value.pow(self.modulus().into() - 2)
}
}
impl<T> From<T> for RuntimePrimeModulus<T> {
fn from(modulus: T) -> Self {
Self(modulus)
}
}