第四题我是用的dfs + 剪枝写的 只过了66% 有大佬帮忙看看哪还有问题吗 int m, n; int ans = INT_MAX; int dx[4] = {0, -1, 0, 1}, dy[4] = {-1, 0, 1, 0}; void dfs(vector<vector<int> >& p, int x, int y, int res) { if(res >= ans) return; if(x == m - 1 && y == n - 1) { ans = min(ans, r...