-
Notifications
You must be signed in to change notification settings - Fork 0
/
factRhoPollard-code.cpp
142 lines (121 loc) · 4.29 KB
/
factRhoPollard-code.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
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
#pragma once
#include "LNum.h"
#include "ILNum.h"
#include "RNum.h"
#include "Ordinal.h"
#include "Signum.h"
#include <iostream>
#include <random>
#include <ctime>
using namespace std;
//���������� � �������
LNum power(LNum const&, LNum const&);
//�������� �� �������� ����� � ������� ����� �������-������
bool isPrimeNum(LNum const&);
//����������� �������� �������� ����� ��� ����������� ������ �����, ���� ��� �������
LNum RhoPollard(LNum const&);
//������ ���������� �� ������� ��������� ����� � ��������� ���� �������� � ������
vector<LNum> factRhoPollard(LNum const& N);
int main(int argc, char** argv) {
//����� ������ ������������� ������ ������������ ����� ��-������� ��������
LNum N;
cin >> N;
vector<LNum> mas = factRhoPollard(N);
cout << "Factorization of RhoPollard: ";
for (size_t i = 0; i < mas.size(); i++)
{
cout << mas.at(i) << ' ';
}
return EXIT_SUCCESS;
}
LNum power(LNum const& a, LNum const& b)
{
auto y = b;
auto mul = a;
LNum res = LNum(1);
while (NZER_N_B(y))
{
if (y % LNum(2) == 1) res = res*mul;
mul = mul * mul;
y = y / LNum(2);
}
return res;
}
bool isPrimeNum(LNum const& N)
{
srand(time(nullptr));
//���������� ����� �� ��� : n-1 = 2^(s)*t, t % 2 = 1
if (COM_NN_D(N, LNum(2)) != Ordinal::GT) return true;
LNum n = N - LNum(1), s = LNum(0), t;
while (n % LNum(2) == LNum(0))
{
n = n / LNum(2);
s = s + LNum(1);
}
t = n;
LNum k = LNum(3), a, x;
// ��� �� ��������� �������� �������� �, ���� ����� ������������� ��, ������� true
while (k != LNum(0))
{
a = LNum(rand()) % (N - LNum(3)) + LNum(2);
x = power(a, t) % N;
k = k - LNum(1);
if ((x == LNum(1) || (x == (N - LNum(1))))) continue;
x = power(a, t);
for (LNum p = LNum(0); COM_NN_D(p, s) == Ordinal::LT; p = p + LNum(1))
{
if ((x % N == 1) || (x % N == (N - LNum(1)))) return true;
x = x * x;
}
return false;
}
return true;
}
LNum RhoPollard(LNum const& N)
{
//��������� ����� �� ��������: �� - ���������� ���� �����, ��� - ��������� ����� �������� �� ��� ���, ���� �� ������ ������� ��������
if (isPrimeNum(N)) return N;
srand(time(nullptr));
vector<LNum> mas;
LNum d;
do {
LNum x = LNum(rand()) % N;
mas.push_back(x);
bool cycle = false;
//��������� ������, ���� ������������������ �� ����������
while (!cycle)
{
//��� ���������� ����� ������� x*x+1
x = (x*x + LNum(1)) % N;
mas.push_back(x);
for (size_t i = 0; i < mas.size() - 1; i++)
if (mas.back() == mas.at(i)) cycle = true;
}
mas.pop_back();
//��������� ��������� ��� ���� ����� �� ��� � ���������� ���������, ���� ��� ������ �� ������ 1 ��� c����� �����
for (size_t i = 1; i < mas.size(); i++)
{
for (size_t j = 0; j < mas.size() - 1; j++)
{
d = GCF_NN_N(mas.at(i) - mas.at(j), N);
if ((d != LNum(1)) && (d != N) && (isPrimeNum(d))) return d;
}
}
mas.clear();
} while ((d == LNum(1)) || (d == N) || (!isPrimeNum(d)));
return d;
}
vector<LNum> factRhoPollard(LNum const& N)
{
LNum x, n = N;
vector<LNum> mas;
cout << "factorization: ";
do
{
x = RhoPollard(n);
mas.push_back(x);
n = n / x;
} while (!isPrimeNum(n));
mas.push_back(n);
return mas;
}