摘要: 动态规划题,根据动态规划,选择最短的路径 class Solution { public: int minimumTotal(vector<vector<int>>& triangle) { int n = triangle.size(); vector<int> f(n); f[0] = tria 阅读全文
posted @ 2021-03-30 20:45 章大佬 阅读(35) 评论(0) 推荐(0)