日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

数学--数论--Miller_Rabin判断素数

發(fā)布時間:2023/12/15 编程问答 41 豆豆
生活随笔 收集整理的這篇文章主要介紹了 数学--数论--Miller_Rabin判断素数 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

ACM常用模板合集

#include<iostream> #include<algorithm> #include<cstring> #include<cstdlib> #include<cmath> #include<ctime> using namespace std; typedef long long ll; const int N = 1e5 + 7; const int times = 10; ll fast_mod(ll a,ll b,ll mod)//計算2^q的過程 {ll res = 0;while(b){if(b & 1) res = res + a;a <<= 1;if(a >= mod) a -= mod;if(res >= mod) res -= mod;b >>= 1;}return res; } ll fast_pow_mod(ll a,ll b,ll mod)//快速冪算出a^m {ll res = 1;while(b){if(b & 1) res = (res * a) % mod;a = (a * a) % mod;b >>= 1;}return res; } bool check(ll a,ll m,ll p,ll n)//對于每次隨機(jī)的a進(jìn)行測試 {ll temp = fast_pow_mod(a,m,n),ret = temp;for(int i = 0;i < p;++i){ret = fast_mod(temp,temp,n);if(ret == 1 && temp != n - 1 && temp != 1) return true;temp = ret;}return ret != 1; } bool Miller_Pabin(ll n)//Miller測試的主體結(jié)構(gòu) {if(n < 2) return false;if(n == 2) return true;if(n & 1 == 0) return false;//對于偶數(shù)的優(yōu)化ll p = 0,x = n - 1;//p為Miller測試的q,x為Miller測試的mwhile(x & 1 == 0){x >>= 1;p++;}srand(time(NULL));for(int i = 0;i < times;++i){ll o = rand() % (n - 1) + 1;//o就是Miller測試的底數(shù)aif(check(o,x,p,n)) return false;}return true; }int main() {ios::sync_with_stdio(false);int t;cin >> t;while(t--){long long n;cin >> n;cout << (Miller_Pabin(n) ? "Prime" : "Not a Prime") << endl;}return 0; }

總結(jié)

以上是生活随笔為你收集整理的数学--数论--Miller_Rabin判断素数的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。