对于玩具程序,我需要一种有效的计算方法
(2**64 * x) % m
其中x
和m
是java long
s,**
表示取幂。这可以计算为
BigInteger.valueOf(x).shiftLeft(64).mod(BigInteger.valueOf(m)).longValue()
或通过反复向左移动x
并减少,但两者都很慢。它没有过早的优化。
‣任何使用BigInteger
的算法都可能比上面的表达式慢。
‣您可以认为m
对于int
来说太大了,否则
long n = (1L<<32) % m;
return ((n*n) % m) * (x % m)) % m
会做的。
slow慢速移位和缩小算法类似于
// assuming x >= 0
long shift32Left(long x, long m) {
long result = x % m;
for (int i=0; i<64; ++i) {
x <<= 1;
// here, `x<0` handles overflow
if (x<0 || x>=m) {
x -= m;
}
}
}
答案 0 :(得分:2)
一般表格:
(a1 * a2 * a3 ... * an) % m = [(a1 % m) * (a2 % m) * ... * (a3 % m) ] % m
应用以上公式,我们有:
(2^64 * x) % m = (((2^64) % m) * (x % m)) % m
第一部分:2^64 mod m
。我可以提出更一般的案例:2^t mod m
。我有这个伪代码。将在N(log t)
次运行。这个仅用于t和m的伪代码是正常整数。根据t和m的范围,您可以修复内部函数计算以在适当的位置使用BigInteger。
long solve(long t, long m) {
if (t == 0) return 1 % m;
if (t == 1) return t % m;
long res = solve(t/2, m);
res = (res * res) % m;
if (t % 2 == 1) res = (res * 2) % m;
return res;
}
感谢OldCurmudgeon。上面的代码可以是一个简单的行:
BigInteger res = (new BigInteger("2")).
modPow(new BigInteger("64"), new BigInteger("" + m));
以下是modPow
的实施。该实现使用不同的方法。算法从m开始:将m移入m = 2^k*q
。然后将找到2 ^ k和q的模数然后使用Chinese Reminder theorem
组合结果。
public BigInteger modPow(BigInteger exponent, BigInteger m) {
if (m.signum <= 0)
throw new ArithmeticException("BigInteger: modulus not positive");
// Trivial cases
if (exponent.signum == 0)
return (m.equals(ONE) ? ZERO : ONE);
if (this.equals(ONE))
return (m.equals(ONE) ? ZERO : ONE);
if (this.equals(ZERO) && exponent.signum >= 0)
return ZERO;
if (this.equals(negConst[1]) && (!exponent.testBit(0)))
return (m.equals(ONE) ? ZERO : ONE);
boolean invertResult;
if ((invertResult = (exponent.signum < 0)))
exponent = exponent.negate();
BigInteger base = (this.signum < 0 || this.compareTo(m) >= 0
? this.mod(m) : this);
BigInteger result;
if (m.testBit(0)) { // odd modulus
result = base.oddModPow(exponent, m);
} else {
/*
* Even modulus. Tear it into an "odd part" (m1) and power of two
* (m2), exponentiate mod m1, manually exponentiate mod m2, and
* use Chinese Remainder Theorem to combine results.
*/
// Tear m apart into odd part (m1) and power of 2 (m2)
int p = m.getLowestSetBit(); // Max pow of 2 that divides m
BigInteger m1 = m.shiftRight(p); // m/2**p
BigInteger m2 = ONE.shiftLeft(p); // 2**p
// Calculate new base from m1
BigInteger base2 = (this.signum < 0 || this.compareTo(m1) >= 0
? this.mod(m1) : this);
// Caculate (base ** exponent) mod m1.
BigInteger a1 = (m1.equals(ONE) ? ZERO :
base2.oddModPow(exponent, m1));
// Calculate (this ** exponent) mod m2
BigInteger a2 = base.modPow2(exponent, p);
// Combine results using Chinese Remainder Theorem
BigInteger y1 = m2.modInverse(m1);
BigInteger y2 = m1.modInverse(m2);
if (m.mag.length < MAX_MAG_LENGTH / 2) {
result = a1.multiply(m2).multiply(y1).add(a2.multiply(m1).multiply(y2)).mod(m);
} else {
MutableBigInteger t1 = new MutableBigInteger();
new MutableBigInteger(a1.multiply(m2)).multiply(new MutableBigInteger(y1), t1);
MutableBigInteger t2 = new MutableBigInteger();
new MutableBigInteger(a2.multiply(m1)).multiply(new MutableBigInteger(y2), t2);
t1.add(t2);
MutableBigInteger q = new MutableBigInteger();
result = t1.divide(new MutableBigInteger(m), q).toBigInteger();
}
}
return (invertResult ? result.modInverse(m) : result);
}
对于第二部分:您可以轻松使用BigInteger
或只是正常计算,取决于x和m的范围。