这道题目用DFS感觉非常直观,但是复杂度是10^200,肯定超时的嘛😂 def getMaximunFishByDfs(self, n, w, b, x, a, cost): def dfs(count, energy, energy_bound, idx): if idx == n: &...