两道题: 1.迷宫花费最少时间 2.最大上升子序列的 方案 第一题:不知道从哪里终止条件,所以设了一个dfs的深度上限,好在AC了,有知道的告知一下 def dfs(x,y,cost,depth,max_depth): if depth > max_depth: return cost += int(MAP[x][y]) if x==N-1 and y==N-1: res.append(cost) return else: if x-1>=0 a...