最优矩阵链乘

  dp[i][j] 第i个矩阵到第j个矩阵相乘的最小次数  k是分割点 蓝桥 算法提高  矩阵乘法 裸题,注意不能用min函数,会超时 #include<iostream> #include<cstring> #include<algorithm> #include<cstdio> using namespace std; const int N=1e3+10; const int INF=0x
相关文章
相关标签/搜索