-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrho.cpp
More file actions
235 lines (189 loc) · 4.42 KB
/
rho.cpp
File metadata and controls
235 lines (189 loc) · 4.42 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
#include <iostream>
#include <map>
#include <vector>
#include <string>
#include <random>
#include <chrono>
#include <unistd.h>
#include <gmpxx.h>
// from 2 to n-1
mpz_class generateGMPRandomNumber(mpz_class _n)
{
mpz_class result(1);
unsigned engineSeed = std::chrono::system_clock::now().time_since_epoch().count();
std::default_random_engine engine{engineSeed};
std::uniform_int_distribution<int> distribution;
int seed;
gmp_randstate_t r_state;
while(result < 2)
{
seed = distribution(engine);
gmp_randinit_mt(r_state);
gmp_randseed_ui(r_state, seed);
mpz_urandomm(result.get_mpz_t(), r_state, _n.get_mpz_t());
}
return result;
}
mpz_class f(mpz_class _x, mpz_class _n)
{
mpz_class result = (_x * _x + 1) % _n;
return result;
}
// returns 1 if unable to factorize --> the number is prime
mpz_class PollardRho(mpz_class _n)
{
mpz_class result;
// Trivial cases test
{
if(_n == 1)
{
result = _n;
return result;
}
if(! _n % 2)
{
result = 2;
return result;
}
}
mpz_class x = generateGMPRandomNumber(_n);
mpz_class y = f(x,_n);
mpz_class distance;
do
{
x = f(x, _n);
y = f(f(y, _n), _n);
distance = abs(x - y);
mpz_gcd(result.get_mpz_t(), distance.get_mpz_t(), _n.get_mpz_t());
if (result > 1 && result != _n)
{
return result;
}
} while(x != y);
return mpz_class(1);
}
std::map<mpz_class,int> runPollardRho(mpz_class _n)
{
std::map<mpz_class,int> factor;
mpz_class result(1);
const int c_reps = 25;
while(_n != 1)
{
if (mpz_probab_prime_p(_n.get_mpz_t(), c_reps))
{
if(factor.find(_n) != factor.end())
factor[_n]++;
else
factor[_n] = 1;
break;
}
result = PollardRho(_n);
_n = _n / result;
if(factor.find(result) != factor.end())
factor[result]++;
else
factor[result] = 1;
}
bool arePrime = true;
do
{
arePrime = true;
std::vector<mpz_class> toDelete;
mpz_class secondResult(1);
for(auto item: factor)
{
if(!mpz_probab_prime_p(item.first.get_mpz_t(), c_reps))
{
arePrime = false;
result = PollardRho(item.first);
secondResult = item.first / result;
if(factor.find(result) != factor.end())
factor[result] += item.second;
else
factor[result] = item.second;
if(factor.find(secondResult) != factor.end())
factor[secondResult] += item.second;
else
factor[secondResult] = item.second;
toDelete.push_back(item.first);
}
}
for (auto item: toDelete)
{
factor.erase(item);
}
} while(!arePrime);
return factor;
}
void testPollardRho()
{
/*
Test number:
210
271
297
10967535067
44343535354351600000003434353
44343535354351600000003434353876698756435645
*/
std::cout << "Please enter a valid number: ";
std::string number;
getline(std::cin, number);
mpz_class n(number);
auto start = std::chrono::steady_clock::now();
std::map<mpz_class,int> arr = runPollardRho(n);
auto end = std::chrono::steady_clock::now();
std::cout << "Elapsed time "
<< std::chrono::duration_cast< std::chrono::milliseconds>(end - start).count()
<< " milliseconds"
<< std::endl;
bool firstEl = true;
for(auto item: arr)
{
if(firstEl) firstEl = false;
else std::cout << " x ";
std::cout << item.first;
if (item.second > 1)
std::cout << "^" << item.second << "";
}
}
// function for testing (milisecs)
void testPollardRhoFullTiming(mpz_class n)
{
auto start = std::chrono::steady_clock::now();
std::map<mpz_class,int> arr = runPollardRho(n);
auto end = std::chrono::steady_clock::now();
std::cout << "Elapsed time "
<< std::chrono::duration_cast< std::chrono::milliseconds>(end - start).count()
<< " milliseconds"
<< std::endl;
// log infor, you can delete if you want
bool firstEl = true;
for(auto item: arr)
{
if(firstEl) firstEl = false;
else std::cout << " x ";
std::cout << item.first;
if (item.second > 1)
std::cout << "^" << item.second << "";
}
}
void testPollardRhoFirstTiming(mpz_class n)
{
auto start = std::chrono::steady_clock::now();
mpz_class firstFactor = PollardRho(n);
auto end = std::chrono::steady_clock::now();
std::cout << "Elapsed time "
<< std::chrono::duration_cast< std::chrono::milliseconds>(end - start).count()
<< " milliseconds"
<< std::endl;
std::cout << firstFactor << std::endl;
}
int main()
{
// Examples
mpz_class n("44343535354351600000003434353876698756435645");
testPollardRhoFirstTiming(n);
testPollardRhoFullTiming(n);
return 0;
}