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

矩阵快速幂模板

时间:2018-02-04 21:17:10      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:post   turn   ++   str   mic   for   div   int   style   

矩阵快速幂模板(手撸一遍,一下午修改的头要爆炸了!!!!!!!)

果然是菜原罪╮(╯▽╰)╭

#define N 20//根据需要自行修改

struct node
{
    int n;
    double rect[N][N];
    struct node operator* (const node b)
    {
        node tem;
        tem.n=n;
        for(int i=1;i<=n;i++)
            for(int j=1;j<=n;j++)
            {
                tem.rect[i][j]=0;
                for(int k=1;k<=n;k++)
                        tem.rect[i][j]+=rect[i][k]*b.rect[k][j];
            }
        return tem;
    };
};

node pin(node a,LL b)//aµÄb´ÎÃÝ
{
    node ans;
    ans.n=a.n;
    for(int i=1;i<=a.n;i++)
        for(int j=1;j<=a.n;j++)
        {
            if(i==j)
                ans.rect[i][j]=1;
            else
                ans.rect[i][j]=0;
        }
    while(b)
    {
        if(b&1)
            ans=a*ans;
        b>>=1;
        a=a*a;
    }
    return ans;
}

 

矩阵快速幂模板

标签:post   turn   ++   str   mic   for   div   int   style   

原文地址:https://www.cnblogs.com/brotherHaiNo1/p/8413867.html

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