码迷,mamicode.com
首页 > 其他好文 > 详细

质因子分解(Pollard_Rho法)

时间:2017-08-16 11:27:05      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:prim   oal   ret   class   pre   质因子分解   log   分解   ack   

LL Pollard_Rho(LL n, LL c) {
    LL x, y, d;
    LL i = 1, k = 2;
    x = y = rand() % n;
    do {
        i++;
        d = gcd(n + y - x, n);
        if(d > 1 && d < n) return d;
        if(i == k) {
            y = x;
            k <<= 1;
        }
        x = (mul_mod(x, x, n) + n - c) % n;
    } while(y != x);
    return n;
}
void rhoAll(LL n) {
    if(n <= 1) return;
    if(isPrime(n)) {
        fac.push_back(n);
        return;
    }
    LL t = n;
    while(t >= n)
        t = Pollard_Rho(n, rand() % (n-1) + 1);
    rhoAll(t);
    rhoAll(n/t);
    return;
}

 

质因子分解(Pollard_Rho法)

标签:prim   oal   ret   class   pre   质因子分解   log   分解   ack   

原文地址:http://www.cnblogs.com/sapphirebitter/p/7371855.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!