c++和c语言都一样 递归解法 摘要:```cpp #include using namespace std; int dp[500][500],array[500][500]; int index; int dfs(int …… 题解列表 2021年04月08日 0 点赞 0 评论 363 浏览 评分:9.9
信息学奥赛一本通T1258- 数字金字塔-题解(C语言代码) 摘要:动态规划题。 每次取(x-1,y)和(x-1,y-1)中的较大数。 f[i][j]=max(f[i-1][j],f[i-1][j-1])+f[i][j] 用DFS会超时。 ```c #inc…… 题解列表 2020年12月21日 0 点赞 4 评论 605 浏览 评分:6.0