-
Notifications
You must be signed in to change notification settings - Fork 1k
/
Copy pathprime.cpp
44 lines (38 loc) · 989 Bytes
/
prime.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#include<bits/stdc++.h>
using namespace std;
typedef long long int ll;
ll modular_pow(long long int base, int exponent,
long long int modulus) {
ll result = 1;
while (exponent > 0) {
if (exponent & 1)
result = (result * base) % modulus;
exponent = exponent >> 1;
base = (base * base) % modulus;
}
return result;
}
ll PollardRho(long long int n) {
srand (time(NULL));
if (n==1) return n;
if (n % 2 == 0) return 2;
ll x = (rand()%(n-2))+2;
ll y = x;
ll c = (rand()%(n-1))+1;
ll d = 1;
while (d==1) {
x = (modular_pow(x, 2, n) + c + n)%n;
y = (modular_pow(y, 2, n) + c + n)%n;
y = (modular_pow(y, 2, n) + c + n)%n;
d = __gcd(abs(x-y), n);
if (d==n) return PollardRho(n);
}
return d;
}
int main() {
ll n;
scanf("%lld", &n);
printf("One of the divisors for %lld is %lld.",
n, PollardRho(n));
return 0;
}