矩阵乘法优化dp
Richard__Luan
这个作者很懒,什么都没留下…
展开
-
矩阵乘法在oi中的应用
矩阵乘法最主要的作用就是用来优化dp了,对于一些求前n-k项和的操作,可以用矩阵乘法快速幂解决 矩乘代码 struct mat { long long a[105][105]; mat operator *(const mat &x)const { mat f; for(int i=0;i<K;i++) for(int j=0;j<K;j++) { ...原创 2018-09-26 19:11:36 · 540 阅读 · 0 评论 -
Codeforces1182E Product Oriented Recurrence(递推+矩乘快速幂)
题目链接 这道题是道好题 给定柿子fx=c2x−6⋅fx−1⋅fx−2⋅fx−3  c,fx−1,fx−2,fx−3f_{x} = c^{2x-6} \cdot f_{x-1} \cdot f_{x-2} \cdot f_{x-3}\ \ \,c, f_{x-1} , f_{x-2}, f_{x-3}fx=c2x−6⋅fx−1⋅fx−2⋅fx...原创 2019-06-20 19:15:51 · 447 阅读 · 0 评论