-
Notifications
You must be signed in to change notification settings - Fork 4
/
modular.java
executable file
·116 lines (93 loc) · 2.57 KB
/
modular.java
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
public class modular {
private static long inv = 0;
/*
* Procedimiento que calcula el módulo inverso: (a^-1)( mod n)
* pero devuelve false, si no existe el inverso o true en caso
* contrario.
* Si el valor del inverso es calculado, entonces es almacenado
* en la variable global inv
**/
public static boolean moduloInverso(long a, long n)
{
long[] resp = new long[3];
resp = euclidesExtendido(a,n);
if(resp[0]>1)
return false;
else
{
if(resp[1]<0)
inv = resp[1]+n;
else
inv = resp[1];
return true;
}
}
/* procedimiento que calcula el valor del maximo común divisor
* de a y b siguiendo el algoritmo de euclides extendido,
* devolviendo en un arreglo la siguiente estructura [d,x,y]
* donde:
* mcd(a,b) = d = a*x + b*y
**/
public static long[] euclidesExtendido(long a, long b)
{
long[] resp = new long[3];
long x=0,y=0,d=0;
if(b==0)
{
resp[0] = a; resp[1] = 1; resp[2] = 0;
}
else
{
long x2 = 1, x1 = 0, y2 = 0, y1 = 1;
long q = 0, r = 0;
while(b>0)
{
q = (a/b);
r = a - q*b;
x = x2-q*x1;
y = y2 - q*y1;
a = b;
b = r;
x2 = x1;
x1 = x;
y2 = y1;
y1 = y;
}
resp[0] = a;
resp[1] = x2;
resp[2] = y2;
}
return resp;
}
/*
* exponenciación modular (a^k)(mod n)
* algoritmo del cuadrado y multiplicación repetida
*
**/
public static long exponenciacionModular(long a, double k, long n)
{
long b = 1;
if(k==0)
return b;
long A = a;
if(k%2==1)
b = a;
while((k = k/2)!=0)
{
A = (A*A)%n;
if(k%2==1)
b=(A*b)%n;
}
return b;
}
public static void main(String[] args) {
// TODO Auto-generated method stub
int numero = 1;
int modulo = 37;
if(moduloInverso(modulo, numero)){
System.out.println("La solucion es: "+inv);
}
else
System.out.println("NO EXISTE SOLUCION");
}
}