摘要: f[i][j]:i种花放j盆的方案数 C++ include using namespace std; const int maxn = 3e2+11; const int mod = 1000007; typedef long long ll; ll f[maxn][maxn],a[maxn],n 阅读全文
posted @ 2017-12-11 18:39 Caturra 阅读(157) 评论(0) 推荐(0)
摘要: 从来不会DP的家伙终于要开始重拾DP了 最大子矩阵没啥好说的,注意单调最大子矩阵不用这么高复杂度,另行更新 阅读全文
posted @ 2017-12-11 01:26 Caturra 阅读(117) 评论(0) 推荐(0)
摘要: http://blog.csdn.net/jinzhao1993/article/details/51383503 阅读全文
posted @ 2017-12-11 00:55 Caturra 阅读(101) 评论(0) 推荐(0)