-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBoys_magia_matematica.cpp
248 lines (220 loc) · 5.36 KB
/
Boys_magia_matematica.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
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
236
237
238
239
240
241
242
243
244
245
246
247
248
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define C 1000000009
using ii = pair<ll, ll>;
/*
Biblioteca Boys_magia_matematica contendo funcoes uteis em questoes de matematica
Sumario:
>Exp_rapida
>MDC
>MMC
>Dec_to_Hex
>Hex_to_Dec
>Dec_Bin
>Bin_Dec
>Primos_Ate_N
>FatorarN_ContemPrimosNecessarios
>FatorarN_ContemTodosPrimos
>Fatorar_NFatorial
>Divisores
>Binomial
>Josephus
>Fatorial_Resto_por_X
>Ultimo_dig_Nfat_nao_0
>Mult_Matrizes_Quadradas
*/
//Calcula base^pot em O[log(pot)]
ll Exp_rapida(ll base, ll pot)
{
ll resultado = 1;
while(pot > 0)
{
if(pot % 2)
resultado *= base;
base *= base;
pot /= 2;
}
return resultado;
}
//Retorna MDC de "x" e "y"
ll MDC(ll x, ll y)
{
if (y==0)
return x;
return MDC(y, x % y);
}
//Retorna MMC de "x" e "y"
ll MMC(ll a,ll b)
{
return a*b/MDC(a, b);
}
//Retorna string Hexadecimal de x Decimal
string Dec_to_Hex(ll x)
{
stringstream ss;
ss << hex << x;
return ss.str();
}
//Retorna inteiro Decimal da string x Hexadecimal
ll Hex_to_Dec(string x)
{
stringstream ss;
ss << x ;
ll decimal_value;
ss >> hex >> decimal_value ;
return decimal_value ;
}
//Retorna string Binaria de x Decimal
string Dec_Bin(ll n)
{
string r;
while(n!=0) {r=(n%2==0 ?"0":"1")+r; n/=2;}
return r;
}
//Retorna inteiro Decimal da string x Binaria
ll Bin_Dec(string s)
{
ll x = 0;
for(ll i = 0 ; i < s.size() ; i++ )
x += (s[i] - '0')*pow(2, s.size() - 1 - i);
return x;
}
//Retorna todos os primos ate N, guardando no vetor Primos
//Tecnica: Crivo de Erastotenes - O[n*loglog(n)]
void Primos_Ate_N(ll N, vector<ll>& Primos)
{
vector<bool> prime(N, 1);
for (ll i = 2; i <= N; i++)
if (prime[i])
{
Primos.push_back(i);
for (ll j = 2*i; j <= N; j += i)
prime[j] = 0;
}
}
//Fatora N, retornando um vetor de pares <fator, expoente> "Fatores" contendo SOMENTE os primos divisores de N
//Necessario por um vetor Primos contendo todos os primos ate pelo menos sqrt(N) (Primos_Ate_N( (ll) ceil( (double) sqrt(N) ), Primos))
void FatorarN_ContemPrimosNecessarios(ll N, vector<ll> Primos, vector<ii>& Fatores)
{
ll count;
for(auto i : Primos)
if(N == 1 || N == 0)
break;
else if(N % i == 0)
{
for(count = 0 ; N % i == 0 ; count++)
N /= i;
Fatores.push_back(ii(i, count));
}
if(N != 1 && N != 0)
Fatores.push_back(ii(N, 1));
}
//Fatora N, retornando um vetor de pares <fator, expoente> "Fatores" contendo TODOS os primos ate N
//Necessario por um vetor Primos contendo todos os primos ate pelo menos N (Primos_Ate_N(N, Primes))
void FatorarN_ContemTodosPrimos(ll N, vector<ll> Primos, vector<ii>& Fatores)
{
ll count;
for(auto i : Primos)
{
if(i > N)
break;
if(N % i == 0)
{
for(count = 0 ; N % i == 0 ; count++)
N /= i;
Fatores.push_back(ii(i, count));
}
else
Fatores.push_back(ii(i, 0));
}
}
//Fatora N!, retornando um vetor de pares <fator, expoente> "Fatores_Fat" contendo TODOS os primos ate N
//Necessario por um vetor Primos contendo todos os primos ate pelo menos N (Primos_Ate_N(N, Primes))
void Fatorar_NFatorial(ll N, vector<ll> Primos, vector<ii>& Fatores_Fat)
{
for(auto i : Primos)
{
if(i > N)
break;
ll count = 0, aux = i;
while(N / aux != 0)
{
count += N / aux;
aux *= i;
}
Fatores_Fat.push_back(ii(i, count));
}
}
//Retorna um conjunto "divisores" de todos os divisores de Fatores.
//Necessario por um vetor de pares do numero fatorado (FatorarN_ContemPrimosNecessarios(N, Primos, Fatores))
//Chamar Divisores(1, 0, Fatores, divisores)
void Divisores(ll N, ll i, vector<ii> Fatores, set<ll>& divisores)
{
ll j, x, k;
divisores.insert(1);
for (j = i ; j < Fatores.size() ; j++)
{
x = Fatores[j].first * N;
for (k = 0 ; k < Fatores[j].second ; k++)
{
divisores.insert(x);
Divisores(x, j + 1, Fatores, divisores);
x *= Fatores[j].first;
}
}
}
//Calcula Binomial[X, Y]
//Necessario por um vetor Primos contendo todos os primos ate pelo menos N (Primos_Ate_N(N, Primes))
ll Binomial(ll X, ll Y, vector<ll> Primos)
{
vector<ii> Factor1, Factor2, Factor3;
Fatorar_NFatorial( X, Primos, Factor1);
Fatorar_NFatorial( Y, Primos, Factor2);
Fatorar_NFatorial(X-Y, Primos, Factor3);
ll comb = 1;
for(int i = 0 ; i < Factor1.size() ; i++)
{
if(Primos[i] > X)
break;
if(i >= Factor2.size())
Factor2.push_back(ii(0, 0));
if(i >= Factor3.size())
Factor3.push_back(ii(0, 0));
comb *= Exp_rapida(Primos[i], Factor1[i].second-Factor2[i].second-Factor3[i].second);
}
return comb;
}
//Retorna a posicao que sobrou do problema de Josephus com n posicoes matando a cada k pessoas
//O[n]
ll Josephus(ll n, ll k) { return n == 1 ? 0 : (Josephus(n-1, k) + k) % n; }
//Retorna vetor "fat" contendo os valores de N! % X
void Fatorial_Resto_por_X(ll N, ll X, vector<ll>& fat)
{
fat.assign(1, 1);
for(ll i = 1 ; i <= N ; i++)
fat.push_back( (fat[i-1] * i) % X );
}
//Retorna o ultimo digito nao-nulo de N!
ll Ultimo_dig_Nfat_nao_0(ll n)
{
int dig[] = {1, 1, 2, 6, 4, 2, 2, 4, 2, 8};
if (n < 10)
return dig[n];
if (((n/10)%10)%2 == 0)
return (6*Ultimo_dig_Nfat_nao_0(n/5)*dig[n%10]) % 10;
else
return (4*Ultimo_dig_Nfat_nao_0(n/5)*dig[n%10]) % 10;
}
//Multiplica duas matrizes quadradas a[tam][tam], guardando em mult[tam][tam]
void Mult_Matrizes_Quadradas(ll **a, ll tam, ll **mult)
{
for(ll i = 0; i < tam; ++i)
for(ll j = 0; j < tam; ++j)
for(ll k = 0; k < tam; ++k)
mult[i][j] += a[i][k] * a[k][j];
}
int main()
{
return 0;
}