PON - Prime or Not
Topic: Miller Robin
Resource:
Primality Test | Set 3 (Miller–Rabin)
Miller Robin
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <bits/stdc++.h> | |
using namespace std; | |
#define INF 1<<30 | |
#define maxn 100005 | |
#define FASTIO ios_base::sync_with_stdio(false), cin.tie(0), cout.tie(0); | |
typedef long long ll; | |
using u64 = uint64_t; | |
using u128 = __uint128_t; | |
u64 binpower(u64 base, u64 e, u64 mod) | |
{ | |
u64 result = 1; | |
base %= mod; | |
while(e){ | |
if(e & 1) | |
result = (u128) result * base % mod; | |
base = (u128) base * base % mod; | |
e >>= 1; | |
} | |
return result; | |
} | |
bool check_compsite(u64 n, u64 a,u64 d, int s) | |
{ | |
u64 x = binpower(a, d, n); | |
if(x == 1 || x == n - 1) | |
return false; | |
for(int r = 1; r < s; r++){ | |
x = (u128)x * x % n; | |
if(x == n - 1) | |
return false; | |
} | |
return true; | |
}; | |
bool MillerRabin(u64 n) // returns true if n is probably prime, else returns false. | |
{ | |
if(n < 2) | |
return false; | |
int s = 0; | |
u64 d = n - 1; | |
while((d & 1) == 0){ | |
d >>= 1; | |
s++; | |
} | |
for (int a : {2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37}) { | |
if (n == a) | |
return true; | |
if (check_compsite(n, a, d, s)) | |
return false; | |
} | |
return true; | |
} | |
int main() | |
{ | |
FASTIO | |
///* | |
//double start_time = clock(); | |
#ifndef ONLINE_JUDGE | |
freopen("in.txt", "r", stdin); | |
freopen("out.txt", "w", stdout); | |
freopen("error.txt", "w", stderr); | |
#endif //*/ | |
u64 n; | |
int T; | |
cin >> T; | |
while(T--){ | |
cin >> n; | |
if(MillerRabin(n)) cout << "YES\n"; | |
else cout << "NO\n"; | |
} | |
//double end_time = clock(); | |
//printf( "Time = %lf ms\n", ( (end_time - start_time) / CLOCKS_PER_SEC)*1000); | |
return 0; | |
} |
No comments:
Post a Comment