矩陣快速冪模板

2022-02-14 01:23:03 字數 629 閱讀 1990

矩陣快速冪其實跟普通快速冪一樣,只是把數換成矩陣而已。

模板,兩種寫法,親測可用:

//

made by whatbeg

struct

matrix

;matrix mul(matrix a,matrix b)

matrix fastm(matrix a,

intn)

return

res;

}matrix mpow(matrix a,

int n) //

第二種寫法,慎用,易re

另一種:

struct

matrix

};matrix mul(matrix a,matrix b)

}return

res;

}matrix fastm(matrix a,

intb)

return

res;

}

對元素0較多的矩陣取快速冪時可在mul函式中加乙個小優化:

matrix mul(matrix a,matrix b)}}

return

res;

}

矩陣快速冪模板

剛學了矩陣快速冪,花了點時間把之前的 修改一下寫成了矩陣類,就當做模板了.話不多說下面貼 首先是標頭檔案和巨集定義什麼的 include include include using namespace std define inf 1000000000 define maxm 20 define m...

矩陣快速冪模板

矩陣快速冪 o log n nyoj301 580ms 時間限制 1000 ms 記憶體限制 65535 kb 難度 4 描述 給你乙個遞推公式 f x a f x 2 b f x 1 c 並給你f 1 f 2 的值,請求出f n 的值,由於f n 的值可能過大,求出f n 對1000007取模後的...

矩陣快速冪模板

struct mat mat operator const mat c return res 上面是我的基本矩陣快速冪模板,其實矩陣快速冪難的不是你怎麼寫,難的是你矩陣怎麼構造。矩陣的構造,就是找遞推關係。要把需要用到的遞推關係包含操作矩陣上去。找到合適的初始向量和合適的操作矩陣,你基本就可以完成題...