解题报告:poj 3070 - 矩阵快速幂简单应用
2017-09-13 19:22:01
writer:pprp
题意很简单,就是通过矩阵快速幂进行运算,得到斐波那契数列靠后的位数
.
这是原理,实现部分就是矩阵的快速幂,也就是二分来做
矩阵快速幂可以用来解决线性递推方程,难点在于矩阵的构造
代码如下:
/*
@theme:用矩阵快速幂解决线性递推公式-斐波那契数列
@writer:pprp
@begin:21:17
@end:19:10
@error:注意mod的位置,不能连用,要加括号来用
@date:2017/9/13
*/
#include <iostream>
#include <cstdio>
#include <algorithm>
#include <cstring>
using namespace std;
typedef long long ll;
const int mod=10000;
struct Mat
{
ll a[2][2];
};
Mat mat_mul(Mat x, Mat y)
{
Mat res;
memset(res.a,0,sizeof(res.a));
for(int i = 0 ; i < 2; i++)
for(int j = 0 ; j < 2; j++)
for(int k = 0 ; k < 2; k++)
{
res.a[i][j] += x.a[i][k] * y.a[k][j];
res.a[i][j] %= mod;
}
return res;
}
void quick_pow(ll n)
{
Mat E,res;
E.a[0][0] = E.a[0][1] = E.a[1][0] = 1;
E.a[1][1] = 0;
memset(res.a,0,sizeof(res.a));
for(int i = 0 ; i < 2; i++)//二阶单位矩阵
res.a[i][i] = 1;
while(n)
{
if(n&1)
res = mat_mul(res,E);
E = mat_mul(E,E);
n >>= 1;
}
cout << res.a[0][1] << endl;
}
int main()
{
ios::sync_with_stdio(false);
ll n;
while(cin >> n && n != -1)
{
quick_pow(n);
}
return 0;
}
/*
@theme:用矩阵快速幂解决线性递推公式-斐波那契数列
@writer:pprp
@begin:21:17
@end:19:10
@error:注意mod的位置,不能连用,要加括号来用
@date:2017/9/13
*/
#include <iostream>
#include <cstdio>
#include <algorithm>
#include <cstring>
using namespace std;
typedef long long ll;
const int mod=10000;
struct Mat
{
ll a[2][2];
};
Mat mat_mul(Mat x, Mat y)
{
Mat res;
memset(res.a,0,sizeof(res.a));
for(int i = 0 ; i < 2; i++)
for(int j = 0 ; j < 2; j++)
for(int k = 0 ; k < 2; k++)
{
res.a[i][j] += x.a[i][k] * y.a[k][j];
res.a[i][j] %= mod;
}
return res;
}
void quick_pow(ll n)
{
Mat E,res;
E.a[0][0] = E.a[0][1] = E.a[1][0] = 1;
E.a[1][1] = 0;
memset(res.a,0,sizeof(res.a));
for(int i = 0 ; i < 2; i++)//二阶单位矩阵
res.a[i][i] = 1;
while(n)
{
if(n&1)
res = mat_mul(res,E);
E = mat_mul(E,E);
n >>= 1;
}
cout << res.a[0][1] << endl;
}
int main()
{
ios::sync_with_stdio(false);
ll n;
while(cin >> n && n != -1)
{
quick_pow(n);
}
return 0;
}
代码改变世界