摘要: 1216 一道比较简单的递推题目 f[i][j] += max( f[i-1][j] , f[i-1][j-1]) #include<bits/stdc++.h> using namespace std; const int N = 1010; int r,a[N][N] = {},maxx = 0 阅读全文
posted @ 2021-11-21 21:12 PHarr 阅读(50) 评论(0) 推荐(0) 编辑