麻烦老哥们看看最大利润那题为啥这样dp不对 public int findMaximizedCapital(int k, int w, int[] profits, int[] capital) { int n = profits.length; // i 表示一共做了多少个项目,j表示考虑到第几个项目了 dp表示所代表的利润 int[][] dp = new int[k+1][n+1]; int temp = w > capital[0] ? w + profits[0] - capital[0] : 0; ...