-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMatrix Expo.cpp
98 lines (77 loc) · 1.71 KB
/
Matrix Expo.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
#define mxr 5 /// change here
#define mxc 5
struct matrix{
int R,C;
int m[mxr][mxc]; /// change data type if needed
matrix(){}
matrix(int R, int C){
this->R = R;
this->C = C;
}
void assign(int r, int c){
R = r;
C = c;
}
void matmem(){
memset(m,0,sizeof m);
}
void identity(){
matmem();
for ( int i = 0; i < R; i++ )
m[i][i] = 1;
}
void print() { ///For debugging purpose
for ( int i = 0; i < R; i++ ){
for ( int j = 0; j < C; j++ ){
cout<<m[i][j]<<" ";
}
printf ( "\n" );
}
cout<<endl;
}
};
matrix multiply(matrix a, matrix b){
matrix res(a.R, b.C);
for(int r1 = 0; r1<a.R; r1++){
for(int c1 = 0; c1<a.C; c1++){
res.m[r1][c1] = 0;
for(int k = 0; k<a.C; k++){
res.m[r1][c1] += (a.m[r1][k] * b.m[k][c1]); /// mod here if needed
}
}
}
return res;
}
matrix bigMatMod(matrix a, ll p){
if(p == 1) return a;
if(p%2 == 1) {
return multiply(a, bigMatMod(a, p-1));
}
else {
matrix res = bigMatMod(a, p/2);
return multiply(res, res);
}
}
matrix A, B, X;
ll f0, f1; /* X = | f0 |
| f1 | */
int a, b; // value
void buildMatrix(){
/// Set row column accordingly
A.assign(2, 2);
B.assign(2, 1);
/// Store initial values in the matrix
A.m[0][0] = a;
A.m[0][1] = b;
A.m[1][0] = 1;
A.m[1][1] = 0;
X.m[0][0] = f1;
X.m[1][0] = f0;
}
int main()
{
buildMatrix();
B = bigMatMod(A, n-1); /// A^(n-1)th
B = multiply(B, X); /// B * X
return 0;
}