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
//! tetration。
use super::euler_phi;
use euler_phi::EulerPhi;
/// tetration。
///
/// ${}^b a\\bmod n$ を求める。${}^\\bullet \\bullet$ は次のように定義される。
/// $$ {}^b a = \\begin{cases}
/// 1, & \\text{if } b = 0; \\\\
/// a^{\\left({}^{(b-1)} a\\right)}, & \\text{if } b \\ge 1.
/// \\end{cases} $$
/// 直感的に書けば、$\\underbrace{a^{(a^{(\\cdots ^a)})}}\_{b\\text{ many}} \\bmod n$ である。
///
/// # Idea
/// 大変大きくなりうる $z$ に対して $a^z\\bmod n$ を求めることを考える。
/// このとき、[`dlog`] の [Idea] と同じ議論から、ある $\\mu$, $\\lambda$ が存在して
/// $z\\lt\\mu$ または $z=\\mu+q\\cdot\\lambda+r$ とでき、後者のとき
/// $a^z\\equiv a^{\\mu+r}\\pmod{n}$ が成り立つ。
///
/// ここで、$\\mu\\le\\log\_2(n)$, $\\lambda\\sqsubseteq\\varphi(n)$ である。
/// さらに、任意の $n$ に対して $\\log\_2(n)\\le\\varphi(n)$ なので、$z\\ge\\varphi(n)$
/// ならば $z\\ge\\mu$ とわかる。よって、以下のようにできる。
/// $$ \\begin{aligned}
/// a^z \\equiv \\begin{cases}
/// a^z, & \\text{if }z\\lt \\varphi(n); \\\\
/// a^{(z\\bmod\\varphi(n))+\\varphi(n)}, & \\text{otherwise}.
/// \\end{cases}
/// \\end{aligned} $$
///
/// 直感的には、指数部が $\\varphi(n)$ 以上であればすでに周期の中に入っており、入った後は
/// $\\varphi(n)$ を法として合同かつ $\\varphi(n)$ 以上の値さえ得られれば十分ということである。
///
/// [`dlog`]: fn.dlog.html
/// [Idea]: fn.dlog.html#idea
///
/// ## When $b$ is large
/// 前述のように、${}^b a\\bmod{n}$ を求める際に ${}^{b-1} a$ を法 ${\\varphi(n)}$ で考える。
/// その次は $\\varphi(\\varphi(n)), \\varphi(\\varphi(\\varphi(n))), \\dots$ と続く。
/// $\\varphi^\\star(n)$ 段では考えるべき法が $1$ となり、それより上の段のことは無視できる。
///
/// そこで、$\\varphi^\\star(n)$ を考える。奇素数 $p$ に対して $\\varphi(p^e)=p^{e-1}\\cdot(p-1)$
/// が偶数であることと、$\\varphi(2^e)=2^{e-1}$ であることから、$\\varphi(\\varphi(n))\\lt n/2$
/// が成り立つ。すなわち、$\\varphi^\\star(n)\\le 2\\log(n)$ である[^1]。
///
/// [^1]: ゆるゆるな bound である。実際にはもっと速く減りそう。
///
/// よって、$b\\ge 2\\log(n)$ であれば ${}^{b+1} a\\equiv {}^b a\\pmod{n}$ となる。
///
/// ## Common bugs
/// 繰り返し二乗法で $\\varphi(n)$ 以上か判断しつつ $a^z\\bmod\\varphi(n)$ を求める際、
/// $a^{2^\\bullet}$ が $\\varphi(n)$ 以上になった時点で $a^z\\ge\\varphi(n)$
/// と判断してしまうと、誤検出してしまう場合がある。
/// ```ignore
/// fn mod_pow(mut a: u64, mut b: u64, n: u64) -> u64 {
/// let mut res = 1 % n;
/// let mut large = false;
/// while b > 0 {
/// if b & 1 == 1 {
/// res *= a;
/// if res >= n { res %= n; large = true; }
/// }
/// a *= a;
/// if a >= n { a %= n; large = true; } // !
/// b >>= 1;
/// }
/// if large { res + n } else { res }
/// }
/// ```
/// 最後のループで初めて `a >= n` になると、`res < n` なのに `res + n` が返ってしまう。
/// このバグや、あるいはそもそも $z\\ge\\varphi(n)$ を仮定していることなどにより、
/// ${}^3 2\\bmod 32 = 0$ としてしまうコードがたくさん提出されている。
/// [$\\bullet$](https://judge.yosupo.jp/submission/4054)
/// [$\\bullet$](https://judge.yosupo.jp/submission/4564)
/// [$\\bullet$](https://judge.yosupo.jp/submission/12501)
/// [$\\bullet$](https://judge.yosupo.jp/submission/18734)
/// [$\\bullet$](https://judge.yosupo.jp/submission/23725)
/// [$\\bullet$](https://judge.yosupo.jp/submission/25108)
/// [$\\bullet$](https://judge.yosupo.jp/submission/28794)
/// [$\\bullet$](https://judge.yosupo.jp/submission/36536)
/// [$\\bullet$](https://judge.yosupo.jp/submission/38102)
/// [$\\bullet$](https://judge.yosupo.jp/submission/39646)
/// [$\\bullet$](https://judge.yosupo.jp/submission/40708)
/// [$\\bullet$](https://judge.yosupo.jp/submission/42416)
///
/// # Complexity
/// $O(\\sqrt{n})$ time.
///
/// 律速は、$\\varphi(n), \\varphi(\\varphi(n)), \\dots$ を求めるパートであり、
/// $O(\\sum\_{i=0}^{\\varphi^\\star(n)} \\sqrt{n/2^i}) = O(\\sqrt{n})$ である。
///
/// # Examples
/// ```
/// use nekolib::math::ModTetration;
///
/// let n = 10_u64.pow(9);
///
/// assert_eq!(0_u64.mod_tetration(0, n), 1);
/// assert_eq!(0_u64.mod_tetration(1, n), 0);
/// assert_eq!(0_u64.mod_tetration(2, n), 1);
/// assert_eq!(0_u64.mod_tetration(3, n), 0);
///
/// assert_eq!(1_u64.mod_tetration(0, n), 1);
/// assert_eq!(1_u64.mod_tetration(1, n), 1);
///
/// assert_eq!(2_u64.mod_tetration(0, n), 1);
/// assert_eq!(2_u64.mod_tetration(1, n), 2);
/// assert_eq!(2_u64.mod_tetration(2, n), 4);
/// assert_eq!(2_u64.mod_tetration(3, n), 16);
/// assert_eq!(2_u64.mod_tetration(4, n), 65536);
///
/// assert_eq!(3_u64.mod_tetration(9, n), 64_195_387);
/// assert_eq!(3_u64.mod_tetration(10, n), 464_195_387);
/// assert_eq!(3_u64.mod_tetration(11, n), 464_195_387);
/// assert_eq!(3_u64.mod_tetration(99, n), 464_195_387);
/// ```
///
/// # Notations
/// ${}^b a$ は $a\\uparrow\\uparrow b$ (Knuth's up-arrow notation) や
/// $a\\to b\\to 2$ (Conway chained arrow notation) などとも表記される。
pub trait ModTetration {
fn mod_tetration(self, b: Self, n: Self) -> Self;
}
trait ModTetrationInternal {
fn rec(self, b: Self, n: Self) -> Self;
fn mod_pow(self, b: Self, n: Self, large: bool) -> Self;
}
macro_rules! impl_uint {
($t:ty) => {
impl ModTetration for $t {
fn mod_tetration(self, b: Self, n: Self) -> Self {
let a = self;
match (a, b, n) {
(.., 1) => return 0,
(_, 0, _) => return 1,
(_, 1, _) => return a % n,
_ => match a.rec(b, n) {
z if z >= n => z - n,
z => z,
}
}
}
}
impl ModTetrationInternal for $t {
fn rec(self, b: Self, n: Self) -> Self {
let a = self;
match (a, b, n) {
(0, ..) => return 1 - b % 2,
(1, ..) => return 1,
(.., 1) => return 1,
(_, 1, _) => return a,
_ => {
let phi = n.euler_phi();
let res = a.rec(b - 1, phi);
(a % n).mod_pow(res, n, res >= phi || a >= phi)
}
}
}
fn mod_pow(self, mut b: Self, n: Self, mut large: bool) -> Self {
let mut a = self;
let mut res = 1;
let mut large_buf = false;
while b > 0 {
if b & 1 == 1 {
res *= a;
large |= large_buf;
if res >= n {
res %= n;
large = true;
}
}
a *= a;
if a >= n {
a %= n;
large_buf = true;
}
b >>= 1;
}
if large { res + n } else { res }
}
}
};
( $($t:ty)* ) => { $(impl_uint!($t);)* };
}
impl_uint!(u8 u16 u32 u64 u128 usize);
#[test]
fn test() {
for n in 1_u64..100000 {
if 2.mod_tetration(2, n) != 4 % n {
eprintln!("{:?}", (2, 2, n));
}
if 2.mod_tetration(3, n) != 16 % n {
eprintln!("{:?}", (2, 3, n));
}
if 2.mod_tetration(4, n) != 65536 % n {
eprintln!("{:?}", (2, 4, n));
}
if 2.mod_tetration(5, n) != 2_u64.mod_pow(65536, n, true) - n {
eprintln!("{:?}", (2, 5, n));
}
if 3.mod_tetration(2, n) != 27 % n {
eprintln!("{:?}", (3, 2, n));
}
if 3.mod_tetration(3, n) != 7_625_597_484_987 % n {
eprintln!("{:?}", (3, 3, n));
}
}
}