码迷,mamicode.com
首页 > 其他好文 > 详细

矩阵乘法

时间:2017-07-20 18:53:19      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:for   while   tor   space   ++   main   mat   bsp   ace   

#include<bits/stdc++.h>
using namespace std;
const int N=2;
const int MOD=10000;
struct MAT{int a[N][N];};

MAT operator*(MAT x, MAT y){
    MAT z;
    for(int i=0;i<N;++i)
        for(int j=0;j<N;++j){
            z.a[i][j]=0;
            for(int k=0;k<N;++k)
                z.a[i][j]=(z.a[i][j]+x.a[i][k]*y.a[k][j])%MOD;
        }
    return z;
}

MAT pow(int n){
    MAT ret,s;
    ret.a[0][0]=ret.a[1][1]=1;
    ret.a[1][0]=ret.a[0][1]=0;
    s.a[0][0]=s.a[0][1]=s.a[1][0]=1;
    s.a[1][1]=0;
    for(;n;n>>=1,s=s*s)if(n&1)ret=ret*s;
    return ret;
}

int main(){
    int n;
    while(cin>>n,n>=0){
        MAT ans=pow(n);
        cout<<ans.a[0][1]<<endl;
    }
}

矩阵乘法

标签:for   while   tor   space   ++   main   mat   bsp   ace   

原文地址:http://www.cnblogs.com/codetogether/p/7212666.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!