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

Miller-Rabin 素数测试

时间:2019-11-23 19:52:54      阅读:40      评论:0      收藏:0      [点我收藏+]

标签:href   efi   pre   概率   fine   print   code   can   保险   

Miller-Rabin 素数测试

首先,总之,很玄学。

学过费马小定理 \(a^{p-1}\equiv1\quad(mod\;p)\) 后,我们知道其逆定理不一定成立。

而对于 \(a^{p-1}\equiv1\quad(mod\;p)\) 成立但不是素数的 \(p\) ,称之为伪素数。

但是据统计(没错,就是暴力统计)后,我们发现对于每个 \(a\) ,伪素数个数大概都小于素数的 \(\frac 14\) 。即判错几率不很大。那么只要多测几组 \(a\) ,这个概率就超小了。这就是 \(Miller-Rabin\) 素数测试。

其实我看完一脸懵逼

总之测前 \(17\) 个数就很保险了,\(1e15\) 范围内都是正确的。

#include<cstdio>
#include<algorithm>
using namespace std;
typedef int int_;
#define int long long

int n;

int ksm(int x,int q,int p){
    int ret=1;
    while(q>0){
        if(q&1) ret=(ret*x)%p;
        x=(x*x)%p;
        q>>=1;
    }
    return ret;
}

bool check(int a,int x){
    int m=ksm(a,x-1,x);
    if(m==1) return false;
    else return true;
}


int_ main()
{
    scanf("%lld",&n);
    if(n<=16){
        if(n==2 || n==3 || n==5 || n==7 || n==11 || n==13 || n==17) printf("Yes");
        else printf("No");
        return 0;
    }
    for(int i=1;i<=17;i++){
        if(check(i,n)){
            printf("No");
            return 0;
        }
    }
    printf("Yes");
    return 0;
}
  • \(\frak by\;thorn\_\)

Miller-Rabin 素数测试

标签:href   efi   pre   概率   fine   print   code   can   保险   

原文地址:https://www.cnblogs.com/thornblog/p/11919151.html

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