摘要: dfs 深度优先搜索:一条路走到黑 基本模型: Returntype dfs(参数) { 判断边界(返回) 扩展状态 dfs下一步 返回} dfs + 记忆返回值 = 记忆化搜索 class Solution { public: int minPathCost(vector<vector<int>> 阅读全文
posted @ 2023-11-22 20:21 深渊之巅 阅读(10) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> #include<cstdio> #include<cstring> #include<algorithm> #include<climits> using namespace std; typedef long long LL; const int N = 5 阅读全文
posted @ 2023-11-22 19:33 深渊之巅 阅读(5) 评论(0) 推荐(0) 编辑