Leetcode 题解 - 动态规划.md 42.0 KB
Newer Older
C
CyC2018 已提交
1 2
递归和动态规划都是将原问题拆成多个子问题然后求解,他们之间最本质的区别是,动态规划保存了子问题的解,避免重复计算。

C
CyC2018 已提交
3
# 斐波那契数列
C
CyC2018 已提交
4

C
CyC2018 已提交
5
## 爬楼梯
C
CyC2018 已提交
6

C
CyC2018 已提交
7
[70. Climbing Stairs (Easy)](https://leetcode.com/problems/climbing-stairs/description/)
C
CyC2018 已提交
8

C
CyC2018 已提交
9
题目描述:有 N 阶楼梯,每次可以上一阶或者两阶,求有多少种上楼梯的方法。
C
CyC2018 已提交
10

C
CyC2018 已提交
11
定义一个数组 dp 存储上楼梯的方法数(为了方便讨论,数组下标从 1 开始),dp[i] 表示走到第 i 个楼梯的方法数目。
C
CyC2018 已提交
12

C
CyC2018 已提交
13
第 i 个楼梯可以从第 i-1 和 i-2 个楼梯再走一步到达,走到第 i 个楼梯的方法数为走到第 i-1 和第 i-2 个楼梯的方法数之和。
C
CyC2018 已提交
14

C
CyC2018 已提交
15
<!--$$dp[i] = dp[i-1] + dp[i-2]$$-->
C
CyC2018 已提交
16

C
CyC2018 已提交
17
![](index_files/14fe1e71-8518-458f-a220-116003061a83.png)
C
CyC2018 已提交
18 19


C
CyC2018 已提交
20
考虑到 dp[i] 只与 dp[i - 1] 和 dp[i - 2] 有关,因此可以只用两个变量来存储 dp[i - 1] 和 dp[i - 2],使得原来的 O(N) 空间复杂度优化为 O(1) 复杂度。
C
CyC2018 已提交
21 22

```java
C
CyC2018 已提交
23 24 25 26 27 28 29 30 31 32 33
public int climbStairs(int n) {
    if (n <= 2) {
        return n;
    }
    int pre2 = 1, pre1 = 2;
    for (int i = 2; i < n; i++) {
        int cur = pre1 + pre2;
        pre2 = pre1;
        pre1 = cur;
    }
    return pre1;
C
CyC2018 已提交
34 35 36
}
```

C
CyC2018 已提交
37
## 强盗抢劫
C
CyC2018 已提交
38

C
CyC2018 已提交
39
[198. House Robber (Easy)](https://leetcode.com/problems/house-robber/description/)
C
CyC2018 已提交
40 41 42

题目描述:抢劫一排住户,但是不能抢邻近的住户,求最大抢劫量。

C
CyC2018 已提交
43
定义 dp 数组用来存储最大的抢劫量,其中 dp[i] 表示抢到第 i 个住户时的最大抢劫量。
C
CyC2018 已提交
44

C
CyC2018 已提交
45
由于不能抢劫邻近住户,如果抢劫了第 i -1 个住户,那么就不能再抢劫第 i 个住户,所以
C
CyC2018 已提交
46

C
CyC2018 已提交
47
<!--$$dp[i] = max(dp[i - 2] + nums[i], dp[i - 1])$$-->
C
CyC2018 已提交
48

C
CyC2018 已提交
49
![](index_files/2de794ca-aa7b-48f3-a556-a0e2708cb976.jpg)
C
CyC2018 已提交
50 51

```java
C
CyC2018 已提交
52 53 54 55 56 57 58 59
public int rob(int[] nums) {
    int pre2 = 0, pre1 = 0;
    for (int i = 0; i < nums.length; i++) {
        int cur = Math.max(pre2 + nums[i], pre1);
        pre2 = pre1;
        pre1 = cur;
    }
    return pre1;
C
CyC2018 已提交
60 61 62
}
```

C
CyC2018 已提交
63
## 强盗在环形街区抢劫
C
CyC2018 已提交
64

C
CyC2018 已提交
65
[213. House Robber II (Medium)](https://leetcode.com/problems/house-robber-ii/description/)
C
CyC2018 已提交
66 67

```java
C
CyC2018 已提交
68 69 70 71 72 73 74 75 76
public  int rob(int[] nums) {
    if (nums == null || nums.length == 0) {
        return 0;
    }
    int n = nums.length;
    if (n == 1) {
        return nums[0];
    }
    return Math.max(rob(nums, 0, n - 2), rob(nums, 1, n - 1));
C
CyC2018 已提交
77 78
}

C
CyC2018 已提交
79 80 81 82 83 84 85 86
private   int rob(int[] nums, int first, int last) {
    int pre2 = 0, pre1 = 0;
    for (int i = first; i <= last; i++) {
        int cur = Math.max(pre1, pre2 + nums[i]);
        pre2 = pre1;
        pre1 = cur;
    }
    return pre1;
C
CyC2018 已提交
87 88 89
}
```

C
CyC2018 已提交
90
## 信件错排
C
CyC2018 已提交
91

C
CyC2018 已提交
92
题目描述:有 N 个 信 和 信封,它们被打乱,求错误装信方式的数量。
C
CyC2018 已提交
93

C
CyC2018 已提交
94
定义一个数组 dp 存储错误方式数量,dp[i] 表示前 i 个信和信封的错误方式数量。假设第 i 个信装到第 j 个信封里面,而第 j 个信装到第 k 个信封里面。根据 i 和 k 是否相等,有两种情况:
C
CyC2018 已提交
95

C
CyC2018 已提交
96 97
- i==k,交换 i 和 k 的信后,它们的信和信封在正确的位置,但是其余 i-2 封信有 dp[i-2] 种错误装信的方式。由于 j 有 i-1 种取值,因此共有 (i-1)\*dp[i-2] 种错误装信方式。
- i != k,交换 i 和 j 的信后,第 i 个信和信封在正确的位置,其余 i-1 封信有 dp[i-1] 种错误装信方式。由于 j 有 i-1 种取值,因此共有 (i-1)\*dp[i-1] 种错误装信方式。
C
CyC2018 已提交
98 99 100

综上所述,错误装信数量方式数量为:

C
CyC2018 已提交
101
<!--$$ dp[i] = (i-1) * dp[i-2] + (i-1) * dp[i-1]$$-->
C
CyC2018 已提交
102

C
CyC2018 已提交
103
![](index_files/da1f96b9-fd4d-44ca-8925-fb14c5733388.png)
C
CyC2018 已提交
104

C
CyC2018 已提交
105
## 母牛生产
C
CyC2018 已提交
106 107 108

[程序员代码面试指南-P181](#)

C
CyC2018 已提交
109
题目描述:假设农场中成熟的母牛每年都会生 1 头小母牛,并且永远不会死。第一年有 1 只小母牛,从第二年开始,母牛开始生小母牛。每只小母牛 3 年之后成熟又可以生小母牛。给定整数 N,求 N 年后牛的数量。
C
CyC2018 已提交
110

C
CyC2018 已提交
111
第 i 年成熟的牛的数量为:
C
CyC2018 已提交
112

C
CyC2018 已提交
113
<!--$$dp[i] = dp[i-1] + dp[i-3]$$-->
C
CyC2018 已提交
114

C
CyC2018 已提交
115
![](index_files/879814ee-48b5-4bcb-86f5-dcc400cb81ad.png)
C
CyC2018 已提交
116

C
CyC2018 已提交
117
# 矩阵路径
C
CyC2018 已提交
118

C
CyC2018 已提交
119
## 矩阵的最小路径和
C
CyC2018 已提交
120

C
CyC2018 已提交
121
[64. Minimum Path Sum (Medium)](https://leetcode.com/problems/minimum-path-sum/description/)
C
CyC2018 已提交
122 123 124

```html
[[1,3,1],
C
CyC2018 已提交
125 126 127
 [1,5,1],
 [4,2,1]]
Given the above grid map, return 7. Because the path 1→3→1→1→1 minimizes the sum.
C
CyC2018 已提交
128 129 130 131 132
```

题目描述:求从矩阵的左上角到右下角的最小路径和,每次只能向右和向下移动。

```java
C
CyC2018 已提交
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
public int minPathSum(int[][] grid) {
    if (grid.length == 0 || grid[0].length == 0) {
        return 0;
    }
    int m = grid.length, n = grid[0].length;
    int[] dp = new int[n];
    for (int i = 0; i < m; i++) {
        for (int j = 0; j < n; j++) {
            if (j == 0) {
                dp[j] = dp[j];        // 只能从上侧走到该位置
            } else if (i == 0) {
                dp[j] = dp[j - 1];    // 只能从左侧走到该位置
            } else {
                dp[j] = Math.min(dp[j - 1], dp[j]);
            }
            dp[j] += grid[i][j];
        }
    }
    return dp[n - 1];
C
CyC2018 已提交
152 153 154
}
```

C
CyC2018 已提交
155
## 矩阵的总路径数
C
CyC2018 已提交
156

C
CyC2018 已提交
157
[62. Unique Paths (Medium)](https://leetcode.com/problems/unique-paths/description/)
C
CyC2018 已提交
158 159 160

题目描述:统计从矩阵左上角到右下角的路径总数,每次只能向右或者向下移动。

C
CyC2018 已提交
161
![](index_files/dc82f0f3-c1d4-4ac8-90ac-d5b32a9bd75a.jpg)
C
CyC2018 已提交
162 163

```java
C
CyC2018 已提交
164 165 166 167 168 169 170 171 172
public int uniquePaths(int m, int n) {
    int[] dp = new int[n];
    Arrays.fill(dp, 1);
    for (int i = 1; i < m; i++) {
        for (int j = 1; j < n; j++) {
            dp[j] = dp[j] + dp[j - 1];
        }
    }
    return dp[n - 1];
C
CyC2018 已提交
173 174 175
}
```

C
CyC2018 已提交
176
也可以直接用数学公式求解,这是一个组合问题。机器人总共移动的次数 S=m+n-2,向下移动的次数 D=m-1,那么问题可以看成从 S 中取出 D 个位置的组合数量,这个问题的解为 C(S, D)。
C
CyC2018 已提交
177 178

```java
C
CyC2018 已提交
179 180 181 182 183 184 185 186
public int uniquePaths(int m, int n) {
    int S = m + n - 2;  // 总共的移动次数
    int D = m - 1;      // 向下的移动次数
    long ret = 1;
    for (int i = 1; i <= D; i++) {
        ret = ret * (S - D + i) / i;
    }
    return (int) ret;
C
CyC2018 已提交
187 188 189
}
```

C
CyC2018 已提交
190
# 数组区间
C
CyC2018 已提交
191

C
CyC2018 已提交
192
## 数组区间和
C
CyC2018 已提交
193

C
CyC2018 已提交
194
[303. Range Sum Query - Immutable (Easy)](https://leetcode.com/problems/range-sum-query-immutable/description/)
C
CyC2018 已提交
195 196

```html
C
CyC2018 已提交
197
Given nums = [-2, 0, 3, -5, 2, -1]
C
CyC2018 已提交
198

C
CyC2018 已提交
199 200 201
sumRange(0, 2) -> 1
sumRange(2, 5) -> -1
sumRange(0, 5) -> -3
C
CyC2018 已提交
202 203
```

C
CyC2018 已提交
204
求区间 i ~ j 的和,可以转换为 sum[j + 1] - sum[i],其中 sum[i] 为 0 ~ i - 1 的和。
C
CyC2018 已提交
205 206

```java
C
CyC2018 已提交
207
class NumArray {
C
CyC2018 已提交
208

C
CyC2018 已提交
209
    private int[] sums;
C
CyC2018 已提交
210

C
CyC2018 已提交
211 212 213 214 215 216
    public NumArray(int[] nums) {
        sums = new int[nums.length + 1];
        for (int i = 1; i <= nums.length; i++) {
            sums[i] = sums[i - 1] + nums[i - 1];
        }
    }
C
CyC2018 已提交
217

C
CyC2018 已提交
218 219 220
    public int sumRange(int i, int j) {
        return sums[j + 1] - sums[i];
    }
C
CyC2018 已提交
221 222 223
}
```

C
CyC2018 已提交
224
## 数组中等差递增子区间的个数
C
CyC2018 已提交
225

C
CyC2018 已提交
226
[413. Arithmetic Slices (Medium)](https://leetcode.com/problems/arithmetic-slices/description/)
C
CyC2018 已提交
227 228

```html
C
CyC2018 已提交
229 230
A = [1, 2, 3, 4]
return: 3, for 3 arithmetic slices in A: [1, 2, 3], [2, 3, 4] and [1, 2, 3, 4] itself.
C
CyC2018 已提交
231 232
```

C
CyC2018 已提交
233
dp[i] 表示以 A[i] 为结尾的等差递增子区间的个数。
C
CyC2018 已提交
234

C
CyC2018 已提交
235
在 A[i] - A[i - 1] == A[i - 1] - A[i - 2] 的条件下,{A[i - 2], A[i - 1], A[i]} 是一个等差递增子区间。如果 {A[i - 3], A[i - 2], A[i - 1]} 是一个等差递增子区间,那么 {A[i - 3], A[i - 2], A[i - 1], A[i]} 也是等差递增子区间,dp[i] = dp[i-1] + 1。
C
CyC2018 已提交
236 237

```java
C
CyC2018 已提交
238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253
public int numberOfArithmeticSlices(int[] A) {
    if (A == null || A.length == 0) {
        return 0;
    }
    int n = A.length;
    int[] dp = new int[n];
    for (int i = 2; i < n; i++) {
        if (A[i] - A[i - 1] == A[i - 1] - A[i - 2]) {
            dp[i] = dp[i - 1] + 1;
        }
    }
    int total = 0;
    for (int cnt : dp) {
        total += cnt;
    }
    return total;
C
CyC2018 已提交
254 255 256
}
```

C
CyC2018 已提交
257
# 分割整数
C
CyC2018 已提交
258

C
CyC2018 已提交
259
## 分割整数的最大乘积
C
CyC2018 已提交
260

C
CyC2018 已提交
261
[343. Integer Break (Medim)](https://leetcode.com/problems/integer-break/description/)
C
CyC2018 已提交
262

C
CyC2018 已提交
263
题目描述:For example, given n = 2, return 1 (2 = 1 + 1); given n = 10, return 36 (10 = 3 + 3 + 4).
C
CyC2018 已提交
264 265

```java
C
CyC2018 已提交
266 267 268 269 270 271 272 273 274
public int integerBreak(int n) {
    int[] dp = new int[n + 1];
    dp[1] = 1;
    for (int i = 2; i <= n; i++) {
        for (int j = 1; j <= i - 1; j++) {
            dp[i] = Math.max(dp[i], Math.max(j * dp[i - j], j * (i - j)));
        }
    }
    return dp[n];
C
CyC2018 已提交
275 276 277
}
```

C
CyC2018 已提交
278
## 按平方数来分割整数
C
CyC2018 已提交
279

C
CyC2018 已提交
280
[279. Perfect Squares(Medium)](https://leetcode.com/problems/perfect-squares/description/)
C
CyC2018 已提交
281

C
CyC2018 已提交
282
题目描述:For example, given n = 12, return 3 because 12 = 4 + 4 + 4; given n = 13, return 2 because 13 = 4 + 9.
C
CyC2018 已提交
283 284

```java
C
CyC2018 已提交
285 286 287 288 289 290 291 292 293 294 295 296 297 298
public int numSquares(int n) {
    List<Integer> squareList = generateSquareList(n);
    int[] dp = new int[n + 1];
    for (int i = 1; i <= n; i++) {
        int min = Integer.MAX_VALUE;
        for (int square : squareList) {
            if (square > i) {
                break;
            }
            min = Math.min(min, dp[i - square] + 1);
        }
        dp[i] = min;
    }
    return dp[n];
C
CyC2018 已提交
299 300
}

C
CyC2018 已提交
301 302 303 304 305 306 307 308 309 310
private List<Integer> generateSquareList(int n) {
    List<Integer> squareList = new ArrayList<>();
    int diff = 3;
    int square = 1;
    while (square <= n) {
        squareList.add(square);
        square += diff;
        diff += 2;
    }
    return squareList;
C
CyC2018 已提交
311 312 313
}
```

C
CyC2018 已提交
314
## 分割整数构成字母字符串
C
CyC2018 已提交
315

C
CyC2018 已提交
316
[91. Decode Ways (Medium)](https://leetcode.com/problems/decode-ways/description/)
C
CyC2018 已提交
317

C
CyC2018 已提交
318
题目描述:Given encoded message "12", it could be decoded as "AB" (1 2) or "L" (12).
C
CyC2018 已提交
319 320

```java
C
CyC2018 已提交
321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342
public int numDecodings(String s) {
    if (s == null || s.length() == 0) {
        return 0;
    }
    int n = s.length();
    int[] dp = new int[n + 1];
    dp[0] = 1;
    dp[1] = s.charAt(0) == '0' ? 0 : 1;
    for (int i = 2; i <= n; i++) {
        int one = Integer.valueOf(s.substring(i - 1, i));
        if (one != 0) {
            dp[i] += dp[i - 1];
        }
        if (s.charAt(i - 2) == '0') {
            continue;
        }
        int two = Integer.valueOf(s.substring(i - 2, i));
        if (two <= 26) {
            dp[i] += dp[i - 2];
        }
    }
    return dp[n];
C
CyC2018 已提交
343 344 345
}
```

C
CyC2018 已提交
346
# 最长递增子序列
C
CyC2018 已提交
347

C
CyC2018 已提交
348
已知一个序列 {S<sub>1</sub>, S<sub>2</sub>,...,S<sub>n</sub>},取出若干数组成新的序列 {S<sub>i1</sub>, S<sub>i2</sub>,..., S<sub>im</sub>},其中 i1、i2 ... im 保持递增,即新序列中各个数仍然保持原数列中的先后顺序,称新序列为原序列的一个**子序列**
C
CyC2018 已提交
349

C
CyC2018 已提交
350
如果在子序列中,当下标 ix > iy 时,S<sub>ix</sub> > S<sub>iy</sub>,称子序列为原序列的一个**递增子序列**
C
CyC2018 已提交
351

C
CyC2018 已提交
352
定义一个数组 dp 存储最长递增子序列的长度,dp[n] 表示以 S<sub>n</sub> 结尾的序列的最长递增子序列长度。对于一个递增子序列 {S<sub>i1</sub>, S<sub>i2</sub>,...,S<sub>im</sub>},如果 im < n 并且 S<sub>im</sub> < S<sub>n</sub>,此时 {S<sub>i1</sub>, S<sub>i2</sub>,..., S<sub>im</sub>, S<sub>n</sub>} 为一个递增子序列,递增子序列的长度增加 1。满足上述条件的递增子序列中,长度最长的那个递增子序列就是要找的,在长度最长的递增子序列上加上 S<sub>n</sub> 就构成了以 S<sub>n</sub> 为结尾的最长递增子序列。因此 dp[n] = max{ dp[i]+1 | S<sub>i</sub> < S<sub>n</sub> && i < n} 。
C
CyC2018 已提交
353

C
CyC2018 已提交
354
因为在求 dp[n] 时可能无法找到一个满足条件的递增子序列,此时 {S<sub>n</sub>} 就构成了递增子序列,需要对前面的求解方程做修改,令 dp[n] 最小为 1,即:
C
CyC2018 已提交
355

C
CyC2018 已提交
356
<!--$$ dp[n] = max\{ 1, dp[i]+1 | S_i < S_n \&\& i < n \} $$-->
C
CyC2018 已提交
357

C
CyC2018 已提交
358
![](index_files/ee994da4-0fc7-443d-ac56-c08caf00a204.jpg)
C
CyC2018 已提交
359

C
CyC2018 已提交
360
对于一个长度为 N 的序列,最长递增子序列并不一定会以 S<sub>N</sub> 为结尾,因此 dp[N] 不是序列的最长递增子序列的长度,需要遍历 dp 数组找出最大值才是所要的结果,max{ dp[i] | 1 <= i <= N} 即为所求。
C
CyC2018 已提交
361

C
CyC2018 已提交
362
## 最长递增子序列
C
CyC2018 已提交
363

C
CyC2018 已提交
364
[300. Longest Increasing Subsequence (Medium)](https://leetcode.com/problems/longest-increasing-subsequence/description/)
C
CyC2018 已提交
365 366

```java
C
CyC2018 已提交
367 368 369 370 371 372 373 374 375 376 377 378 379
public int lengthOfLIS(int[] nums) {
    int n = nums.length;
    int[] dp = new int[n];
    for (int i = 0; i < n; i++) {
        int max = 1;
        for (int j = 0; j < i; j++) {
            if (nums[i] > nums[j]) {
                max = Math.max(max, dp[j] + 1);
            }
        }
        dp[i] = max;
    }
    return Arrays.stream(dp).max().orElse(0);
C
CyC2018 已提交
380 381 382
}
```

C
CyC2018 已提交
383
使用 Stream 求最大值会导致运行时间过长,可以改成以下形式:
C
CyC2018 已提交
384 385

```java
C
CyC2018 已提交
386 387 388
int ret = 0;
for (int i = 0; i < n; i++) {
    ret = Math.max(ret, dp[i]);
C
CyC2018 已提交
389
}
C
CyC2018 已提交
390
return ret;
C
CyC2018 已提交
391 392
```

C
CyC2018 已提交
393
以上解法的时间复杂度为 O(N<sup>2</sup>),可以使用二分查找将时间复杂度降低为 O(NlogN)。
C
CyC2018 已提交
394

C
CyC2018 已提交
395
定义一个 tails 数组,其中 tails[i] 存储长度为 i + 1 的最长递增子序列的最后一个元素。对于一个元素 x,
C
CyC2018 已提交
396

C
CyC2018 已提交
397 398
- 如果它大于 tails 数组所有的值,那么把它添加到 tails 后面,表示最长递增子序列长度加 1;
- 如果 tails[i-1] < x <= tails[i],那么更新 tails[i] = x。
C
CyC2018 已提交
399

C
CyC2018 已提交
400
例如对于数组 [4,3,6,5],有:
C
CyC2018 已提交
401 402

```html
C
CyC2018 已提交
403 404 405 406 407 408
tails      len      num
[]         0        4
[4]        1        3
[3]        1        6
[3,6]      2        5
[3,5]      2        null
C
CyC2018 已提交
409 410
```

C
CyC2018 已提交
411
可以看出 tails 数组保持有序,因此在查找 S<sub>i</sub> 位于 tails 数组的位置时就可以使用二分查找。
C
CyC2018 已提交
412 413

```java
C
CyC2018 已提交
414 415 416 417 418 419 420 421 422 423 424 425
public int lengthOfLIS(int[] nums) {
    int n = nums.length;
    int[] tails = new int[n];
    int len = 0;
    for (int num : nums) {
        int index = binarySearch(tails, len, num);
        tails[index] = num;
        if (index == len) {
            len++;
        }
    }
    return len;
C
CyC2018 已提交
426 427
}

C
CyC2018 已提交
428 429 430 431 432 433 434 435 436 437 438 439 440
private int binarySearch(int[] tails, int len, int key) {
    int l = 0, h = len;
    while (l < h) {
        int mid = l + (h - l) / 2;
        if (tails[mid] == key) {
            return mid;
        } else if (tails[mid] > key) {
            h = mid;
        } else {
            l = mid + 1;
        }
    }
    return l;
C
CyC2018 已提交
441 442 443
}
```

C
CyC2018 已提交
444
## 一组整数对能够构成的最长链
C
CyC2018 已提交
445

C
CyC2018 已提交
446
[646. Maximum Length of Pair Chain (Medium)](https://leetcode.com/problems/maximum-length-of-pair-chain/description/)
C
CyC2018 已提交
447 448

```html
C
CyC2018 已提交
449 450 451
Input: [[1,2], [2,3], [3,4]]
Output: 2
Explanation: The longest chain is [1,2] -> [3,4]
C
CyC2018 已提交
452 453
```

C
CyC2018 已提交
454
题目描述:对于 (a, b) 和 (c, d) ,如果 b < c,则它们可以构成一条链。
C
CyC2018 已提交
455 456

```java
C
CyC2018 已提交
457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472
public int findLongestChain(int[][] pairs) {
    if (pairs == null || pairs.length == 0) {
        return 0;
    }
    Arrays.sort(pairs, (a, b) -> (a[0] - b[0]));
    int n = pairs.length;
    int[] dp = new int[n];
    Arrays.fill(dp, 1);
    for (int i = 1; i < n; i++) {
        for (int j = 0; j < i; j++) {
            if (pairs[j][1] < pairs[i][0]) {
                dp[i] = Math.max(dp[i], dp[j] + 1);
            }
        }
    }
    return Arrays.stream(dp).max().orElse(0);
C
CyC2018 已提交
473 474 475
}
```

C
CyC2018 已提交
476
## 最长摆动子序列
C
CyC2018 已提交
477

C
CyC2018 已提交
478
[376. Wiggle Subsequence (Medium)](https://leetcode.com/problems/wiggle-subsequence/description/)
C
CyC2018 已提交
479 480

```html
C
CyC2018 已提交
481 482 483
Input: [1,7,4,9,2,5]
Output: 6
The entire sequence is a wiggle sequence.
C
CyC2018 已提交
484

C
CyC2018 已提交
485 486 487
Input: [1,17,5,10,13,15,10,5,16,8]
Output: 7
There are several subsequences that achieve this length. One is [1,17,10,13,10,16,8].
C
CyC2018 已提交
488

C
CyC2018 已提交
489 490
Input: [1,2,3,4,5,6,7,8,9]
Output: 2
C
CyC2018 已提交
491 492
```

C
CyC2018 已提交
493
要求:使用 O(N) 时间复杂度求解。
C
CyC2018 已提交
494 495

```java
C
CyC2018 已提交
496 497 498 499 500 501 502 503 504 505 506 507 508
public int wiggleMaxLength(int[] nums) {
    if (nums == null || nums.length == 0) {
        return 0;
    }
    int up = 1, down = 1;
    for (int i = 1; i < nums.length; i++) {
        if (nums[i] > nums[i - 1]) {
            up = down + 1;
        } else if (nums[i] < nums[i - 1]) {
            down = up + 1;
        }
    }
    return Math.max(up, down);
C
CyC2018 已提交
509 510 511
}
```

C
CyC2018 已提交
512
# 最长公共子序列
C
CyC2018 已提交
513

C
CyC2018 已提交
514
对于两个子序列 S1 和 S2,找出它们最长的公共子序列。
C
CyC2018 已提交
515

C
CyC2018 已提交
516
定义一个二维数组 dp 用来存储最长公共子序列的长度,其中 dp[i][j] 表示 S1 的前 i 个字符与 S2 的前 j 个字符最长公共子序列的长度。考虑 S1<sub>i</sub> 与 S2<sub>j</sub> 值是否相等,分为两种情况:
C
CyC2018 已提交
517

C
CyC2018 已提交
518 519
- 当 S1<sub>i</sub>==S2<sub>j</sub> 时,那么就能在 S1 的前 i-1 个字符与 S2 的前 j-1 个字符最长公共子序列的基础上再加上 S1<sub>i</sub> 这个值,最长公共子序列长度加 1,即 dp[i][j] = dp[i-1][j-1] + 1。
- 当 S1<sub>i</sub> != S2<sub>j</sub> 时,此时最长公共子序列为 S1 的前 i-1 个字符和 S2 的前 j 个字符最长公共子序列,或者 S1 的前 i 个字符和 S2 的前 j-1 个字符最长公共子序列,取它们的最大者,即 dp[i][j] = max{ dp[i-1][j], dp[i][j-1] }。
C
CyC2018 已提交
520 521 522

综上,最长公共子序列的状态转移方程为:

C
CyC2018 已提交
523
<!--$$ dp[i][j]=\left\{ \begin{array}{rcl} dp[i-1][j-1]  &&  { S1_i==S2_j }\\ max(dp[i-1][j], dp[i][j-1])  &&{ S1_i <> S2_j } \end{array} \right. $$-->
C
CyC2018 已提交
524

C
CyC2018 已提交
525
![](index_files/ecd89a22-c075-4716-8423-e0ba89230e9a.jpg)
C
CyC2018 已提交
526

C
CyC2018 已提交
527
对于长度为 N 的序列 S<sub>1</sub> 和长度为 M 的序列 S<sub>2</sub>,dp[N][M] 就是序列 S<sub>1</sub> 和序列 S<sub>2</sub> 的最长公共子序列长度。
C
CyC2018 已提交
528 529 530

与最长递增子序列相比,最长公共子序列有以下不同点:

C
CyC2018 已提交
531 532 533
- 针对的是两个序列,求它们的最长公共子序列。
- 在最长递增子序列中,dp[i] 表示以 S<sub>i</sub> 为结尾的最长递增子序列长度,子序列必须包含 S<sub>i</sub> ;在最长公共子序列中,dp[i][j] 表示 S1 中前 i 个字符与 S2 中前 j 个字符的最长公共子序列长度,不一定包含 S1<sub>i</sub> 和 S2<sub>j</sub>
- 在求最终解时,最长公共子序列中 dp[N][M] 就是最终解,而最长递增子序列中 dp[N] 不是最终解,因为以 S<sub>N</sub> 为结尾的最长递增子序列不一定是整个序列最长递增子序列,需要遍历一遍 dp 数组找到最大者。
C
CyC2018 已提交
534 535

```java
C
CyC2018 已提交
536 537 538 539 540 541 542 543 544 545 546 547 548
public int lengthOfLCS(int[] nums1, int[] nums2) {
    int n1 = nums1.length, n2 = nums2.length;
    int[][] dp = new int[n1 + 1][n2 + 1];
    for (int i = 1; i <= n1; i++) {
        for (int j = 1; j <= n2; j++) {
            if (nums1[i - 1] == nums2[j - 1]) {
                dp[i][j] = dp[i - 1][j - 1] + 1;
            } else {
                dp[i][j] = Math.max(dp[i - 1][j], dp[i][j - 1]);
            }
        }
    }
    return dp[n1][n2];
C
CyC2018 已提交
549 550 551
}
```

C
CyC2018 已提交
552
# 0-1 背包
C
CyC2018 已提交
553

C
CyC2018 已提交
554
有一个容量为 N 的背包,要用这个背包装下物品的价值最大,这些物品有两个属性:体积 w 和价值 v。
C
CyC2018 已提交
555

C
CyC2018 已提交
556
定义一个二维数组 dp 存储最大价值,其中 dp[i][j] 表示前 i 件物品体积不超过 j 的情况下能达到的最大价值。设第 i 件物品体积为 w,价值为 v,根据第 i 件物品是否添加到背包中,可以分两种情况讨论:
C
CyC2018 已提交
557

C
CyC2018 已提交
558 559
- 第 i 件物品没添加到背包,总体积不超过 j 的前 i 件物品的最大价值就是总体积不超过 j 的前 i-1 件物品的最大价值,dp[i][j] = dp[i-1][j]
- 第 i 件物品添加到背包中,dp[i][j] = dp[i-1][j-w] + v。
C
CyC2018 已提交
560

C
CyC2018 已提交
561
第 i 件物品可添加也可以不添加,取决于哪种情况下最大价值更大。因此,0-1 背包的状态转移方程为:
C
CyC2018 已提交
562

C
CyC2018 已提交
563
<!--$$ dp[i][j] = max(dp[i-1][j], dp[i-1][j-w] + v) $$-->
C
CyC2018 已提交
564

C
CyC2018 已提交
565
![](index_files/8cb2be66-3d47-41ba-b55b-319fc68940d4.png)
C
CyC2018 已提交
566 567

```java
C
CyC2018 已提交
568 569 570 571 572 573 574 575 576 577 578 579 580
public int knapsack(int W, int N, int[] weights, int[] values) {
    int[][] dp = new int[N + 1][W + 1];
    for (int i = 1; i <= N; i++) {
        int w = weights[i - 1], v = values[i - 1];
        for (int j = 1; j <= W; j++) {
            if (j >= w) {
                dp[i][j] = Math.max(dp[i - 1][j], dp[i - 1][j - w] + v);
            } else {
                dp[i][j] = dp[i - 1][j];
            }
        }
    }
    return dp[N][W];
C
CyC2018 已提交
581 582 583
}
```

C
CyC2018 已提交
584
## 空间优化
C
CyC2018 已提交
585

C
CyC2018 已提交
586
在程序实现时可以对 0-1 背包做优化。观察状态转移方程可以知道,前 i 件物品的状态仅与前 i-1 件物品的状态有关,因此可以将 dp 定义为一维数组,其中 dp[j] 既可以表示 dp[i-1][j] 也可以表示 dp[i][j]。此时,
C
CyC2018 已提交
587

C
CyC2018 已提交
588
<!--$$ dp[j] = max ( dp[j], dp[j-w] + v ) $$-->
C
CyC2018 已提交
589

C
CyC2018 已提交
590
![](index_files/9ae89f16-7905-4a6f-88a2-874b4cac91f4.jpg)
C
CyC2018 已提交
591

C
CyC2018 已提交
592
因为 dp[j-w] 表示 dp[i-1][j-w],因此不能先求 dp[i][j-w],以防将 dp[i-1][j-w] 覆盖。也就是说要先计算 dp[i][j] 再计算 dp[i][j-w],在程序实现时需要按倒序来循环求解。
C
CyC2018 已提交
593 594

```java
C
CyC2018 已提交
595 596 597 598 599 600 601 602 603 604 605
public int knapsack(int W, int N, int[] weights, int[] values) {
    int[] dp = new int[W + 1];
    for (int i = 1; i <= N; i++) {
        int w = weights[i - 1], v = values[i - 1];
        for (int j = W; j >= 1; j--) {
            if (j >= w) {
                dp[j] = Math.max(dp[j], dp[j - w] + v);
            }
        }
    }
    return dp[W];
C
CyC2018 已提交
606 607 608
}
```

C
CyC2018 已提交
609
## 无法使用贪心算法的解释
C
CyC2018 已提交
610

C
CyC2018 已提交
611
0-1 背包问题无法使用贪心算法来求解,也就是说不能按照先添加性价比最高的物品来达到最优,这是因为这种方式可能造成背包空间的浪费,从而无法达到最优。考虑下面的物品和一个容量为 5 的背包,如果先添加物品 0 再添加物品 1,那么只能存放的价值为 16,浪费了大小为 2 的空间。最优的方式是存放物品 1 和物品 2,价值为 22.
C
CyC2018 已提交
612

C
CyC2018 已提交
613 614 615 616 617
| id | w | v | v/w |
| --- | --- | --- | --- |
| 0 | 1 | 6 | 6 |
| 1 | 2 | 10 | 5 |
| 2 | 3 | 12 | 4 |
C
CyC2018 已提交
618

C
CyC2018 已提交
619
## 变种
C
CyC2018 已提交
620

C
CyC2018 已提交
621
- 完全背包:物品数量为无限个
C
CyC2018 已提交
622

C
CyC2018 已提交
623
- 多重背包:物品数量有限制
C
CyC2018 已提交
624

C
CyC2018 已提交
625
- 多维费用背包:物品不仅有重量,还有体积,同时考虑这两种限制
C
CyC2018 已提交
626

C
CyC2018 已提交
627
- 其它:物品之间相互约束或者依赖
C
CyC2018 已提交
628

C
CyC2018 已提交
629
## 划分数组为和相等的两部分
C
CyC2018 已提交
630

C
CyC2018 已提交
631
[416. Partition Equal Subset Sum (Medium)](https://leetcode.com/problems/partition-equal-subset-sum/description/)
C
CyC2018 已提交
632 633

```html
C
CyC2018 已提交
634
Input: [1, 5, 11, 5]
C
CyC2018 已提交
635

C
CyC2018 已提交
636
Output: true
C
CyC2018 已提交
637

C
CyC2018 已提交
638
Explanation: The array can be partitioned as [1, 5, 5] and [11].
C
CyC2018 已提交
639 640
```

C
CyC2018 已提交
641
可以看成一个背包大小为 sum/2 的 0-1 背包问题。
C
CyC2018 已提交
642 643

```java
C
CyC2018 已提交
644 645 646 647 648 649 650 651 652 653 654 655 656 657
public boolean canPartition(int[] nums) {
    int sum = computeArraySum(nums);
    if (sum % 2 != 0) {
        return false;
    }
    int W = sum / 2;
    boolean[] dp = new boolean[W + 1];
    dp[0] = true;
    for (int num : nums) {                 // 0-1 背包一个物品只能用一次
        for (int i = W; i >= num; i--) {   // 从后往前,先计算 dp[i] 再计算 dp[i-num]
            dp[i] = dp[i] || dp[i - num];
        }
    }
    return dp[W];
C
CyC2018 已提交
658 659
}

C
CyC2018 已提交
660 661 662 663 664 665
private int computeArraySum(int[] nums) {
    int sum = 0;
    for (int num : nums) {
        sum += num;
    }
    return sum;
C
CyC2018 已提交
666 667 668
}
```

C
CyC2018 已提交
669
## 改变一组数的正负号使得它们的和为一给定数
C
CyC2018 已提交
670

C
CyC2018 已提交
671
[494. Target Sum (Medium)](https://leetcode.com/problems/target-sum/description/)
C
CyC2018 已提交
672 673

```html
C
CyC2018 已提交
674 675
Input: nums is [1, 1, 1, 1, 1], S is 3.
Output: 5
C
CyC2018 已提交
676 677
Explanation:

C
CyC2018 已提交
678 679 680 681 682
-1+1+1+1+1 = 3
+1-1+1+1+1 = 3
+1+1-1+1+1 = 3
+1+1+1-1+1 = 3
+1+1+1+1-1 = 3
C
CyC2018 已提交
683

C
CyC2018 已提交
684
There are 5 ways to assign symbols to make the sum of nums be target 3.
C
CyC2018 已提交
685 686
```

C
CyC2018 已提交
687
该问题可以转换为 Subset Sum 问题,从而使用 0-1 背包的方法来求解。
C
CyC2018 已提交
688

C
CyC2018 已提交
689
可以将这组数看成两部分,P 和 N,其中 P 使用正号,N 使用负号,有以下推导:
C
CyC2018 已提交
690 691

```html
C
CyC2018 已提交
692 693 694
                  sum(P) - sum(N) = target
sum(P) + sum(N) + sum(P) - sum(N) = target + sum(P) + sum(N)
                       2 * sum(P) = target + sum(nums)
C
CyC2018 已提交
695 696
```

C
CyC2018 已提交
697
因此只要找到一个子集,令它们都取正号,并且和等于 (target + sum(nums))/2,就证明存在解。
C
CyC2018 已提交
698 699

```java
C
CyC2018 已提交
700 701 702 703 704 705 706 707 708 709 710 711 712 713
public int findTargetSumWays(int[] nums, int S) {
    int sum = computeArraySum(nums);
    if (sum < S || (sum + S) % 2 == 1) {
        return 0;
    }
    int W = (sum + S) / 2;
    int[] dp = new int[W + 1];
    dp[0] = 1;
    for (int num : nums) {
        for (int i = W; i >= num; i--) {
            dp[i] = dp[i] + dp[i - num];
        }
    }
    return dp[W];
C
CyC2018 已提交
714 715
}

C
CyC2018 已提交
716 717 718 719 720 721
private int computeArraySum(int[] nums) {
    int sum = 0;
    for (int num : nums) {
        sum += num;
    }
    return sum;
C
CyC2018 已提交
722 723 724
}
```

C
CyC2018 已提交
725
DFS 解法:
C
CyC2018 已提交
726 727

```java
C
CyC2018 已提交
728 729
public int findTargetSumWays(int[] nums, int S) {
    return findTargetSumWays(nums, 0, S);
C
CyC2018 已提交
730 731
}

C
CyC2018 已提交
732 733 734 735 736 737
private int findTargetSumWays(int[] nums, int start, int S) {
    if (start == nums.length) {
        return S == 0 ? 1 : 0;
    }
    return findTargetSumWays(nums, start + 1, S + nums[start])
            + findTargetSumWays(nums, start + 1, S - nums[start]);
C
CyC2018 已提交
738 739 740
}
```

C
CyC2018 已提交
741
## 01 字符构成最多的字符串
C
CyC2018 已提交
742

C
CyC2018 已提交
743
[474. Ones and Zeroes (Medium)](https://leetcode.com/problems/ones-and-zeroes/description/)
C
CyC2018 已提交
744 745

```html
C
CyC2018 已提交
746 747
Input: Array = {"10", "0001", "111001", "1", "0"}, m = 5, n = 3
Output: 4
C
CyC2018 已提交
748

C
CyC2018 已提交
749
Explanation: There are totally 4 strings can be formed by the using of 5 0s and 3 1s, which are "10","0001","1","0"
C
CyC2018 已提交
750 751
```

C
CyC2018 已提交
752
这是一个多维费用的 0-1 背包问题,有两个背包大小,0 的数量和 1 的数量。
C
CyC2018 已提交
753 754

```java
C
CyC2018 已提交
755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775
public int findMaxForm(String[] strs, int m, int n) {
    if (strs == null || strs.length == 0) {
        return 0;
    }
    int[][] dp = new int[m + 1][n + 1];
    for (String s : strs) {    // 每个字符串只能用一次
        int ones = 0, zeros = 0;
        for (char c : s.toCharArray()) {
            if (c == '0') {
                zeros++;
            } else {
                ones++;
            }
        }
        for (int i = m; i >= zeros; i--) {
            for (int j = n; j >= ones; j--) {
                dp[i][j] = Math.max(dp[i][j], dp[i - zeros][j - ones] + 1);
            }
        }
    }
    return dp[m][n];
C
CyC2018 已提交
776 777 778
}
```

C
CyC2018 已提交
779
## 找零钱的最少硬币数
C
CyC2018 已提交
780

C
CyC2018 已提交
781
[322. Coin Change (Medium)](https://leetcode.com/problems/coin-change/description/)
C
CyC2018 已提交
782 783

```html
C
CyC2018 已提交
784 785 786
Example 1:
coins = [1, 2, 5], amount = 11
return 3 (11 = 5 + 5 + 1)
C
CyC2018 已提交
787

C
CyC2018 已提交
788 789 790
Example 2:
coins = [2], amount = 3
return -1.
C
CyC2018 已提交
791 792 793 794
```

题目描述:给一些面额的硬币,要求用这些硬币来组成给定面额的钱数,并且使得硬币数量最少。硬币可以重复使用。

C
CyC2018 已提交
795 796 797
- 物品:硬币
- 物品大小:面额
- 物品价值:数量
C
CyC2018 已提交
798

C
CyC2018 已提交
799
因为硬币可以重复使用,因此这是一个完全背包问题。完全背包只需要将 0-1 背包中逆序遍历 dp 数组改为正序遍历即可。
C
CyC2018 已提交
800 801

```java
C
CyC2018 已提交
802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818
public int coinChange(int[] coins, int amount) {
    if (amount == 0 || coins == null || coins.length == 0) {
        return 0;
    }
    int[] dp = new int[amount + 1];
    for (int coin : coins) {
        for (int i = coin; i <= amount; i++) { //将逆序遍历改为正序遍历
            if (i == coin) {
                dp[i] = 1;
            } else if (dp[i] == 0 && dp[i - coin] != 0) {
                dp[i] = dp[i - coin] + 1;
            } else if (dp[i - coin] != 0) {
                dp[i] = Math.min(dp[i], dp[i - coin] + 1);
            }
        }
    }
    return dp[amount] == 0 ? -1 : dp[amount];
C
CyC2018 已提交
819 820 821
}
```

C
CyC2018 已提交
822
## 找零钱的硬币数组合
C
CyC2018 已提交
823

C
CyC2018 已提交
824
[518\. Coin Change 2 (Medium)](https://leetcode.com/problems/coin-change-2/description/)
C
CyC2018 已提交
825 826

```text-html-basic
C
CyC2018 已提交
827 828 829
Input: amount = 5, coins = [1, 2, 5]
Output: 4
Explanation: there are four ways to make up the amount:
C
CyC2018 已提交
830 831 832 833 834 835
5=5
5=2+2+1
5=2+1+1+1
5=1+1+1+1+1
```

C
CyC2018 已提交
836
完全背包问题,使用 dp 记录可达成目标的组合数目。
C
CyC2018 已提交
837 838

```java
C
CyC2018 已提交
839 840 841 842 843 844 845 846 847 848 849 850
public int change(int amount, int[] coins) {
    if (amount == 0 || coins == null || coins.length == 0) {
        return 0;
    }
    int[] dp = new int[amount + 1];
    dp[0] = 1;
    for (int coin : coins) {
        for (int i = coin; i <= amount; i++) {
            dp[i] += dp[i - coin];
        }
    }
    return dp[amount];
C
CyC2018 已提交
851 852 853
}
```

C
CyC2018 已提交
854
## 字符串按单词列表分割
C
CyC2018 已提交
855

C
CyC2018 已提交
856
[139. Word Break (Medium)](https://leetcode.com/problems/word-break/description/)
C
CyC2018 已提交
857 858

```html
C
CyC2018 已提交
859 860 861
s = "leetcode",
dict = ["leet", "code"].
Return true because "leetcode" can be segmented as "leet code".
C
CyC2018 已提交
862 863
```

C
CyC2018 已提交
864
dict 中的单词没有使用次数的限制,因此这是一个完全背包问题。该问题涉及到字典中单词的使用顺序,因此可理解为涉及顺序的完全背包问题。
C
CyC2018 已提交
865 866 867 868

求解顺序的完全背包问题时,对物品的迭代应该放在最里层。

```java
C
CyC2018 已提交
869 870 871 872 873 874 875 876 877 878 879 880 881
public boolean wordBreak(String s, List<String> wordDict) {
    int n = s.length();
    boolean[] dp = new boolean[n + 1];
    dp[0] = true;
    for (int i = 1; i <= n; i++) {
        for (String word : wordDict) {   // 对物品的迭代应该放在最里层
            int len = word.length();
            if (len <= i && word.equals(s.substring(i - len, i))) {
                dp[i] = dp[i] || dp[i - len];
            }
        }
    }
    return dp[n];
C
CyC2018 已提交
882 883 884
}
```

C
CyC2018 已提交
885
## 组合总和
C
CyC2018 已提交
886

C
CyC2018 已提交
887
[377. Combination Sum IV (Medium)](https://leetcode.com/problems/combination-sum-iv/description/)
C
CyC2018 已提交
888 889

```html
C
CyC2018 已提交
890 891
nums = [1, 2, 3]
target = 4
C
CyC2018 已提交
892

C
CyC2018 已提交
893 894 895 896 897 898 899 900
The possible combination ways are:
(1, 1, 1, 1)
(1, 1, 2)
(1, 2, 1)
(1, 3)
(2, 1, 1)
(2, 2)
(3, 1)
C
CyC2018 已提交
901

C
CyC2018 已提交
902
Note that different sequences are counted as different combinations.
C
CyC2018 已提交
903

C
CyC2018 已提交
904
Therefore the output is 7.
C
CyC2018 已提交
905 906 907 908 909
```

涉及顺序的完全背包。

```java
C
CyC2018 已提交
910 911 912 913 914 915 916 917 918 919 920 921 922
public int combinationSum4(int[] nums, int target) {
    if (nums == null || nums.length == 0) {
        return 0;
    }
    int[] maximum = new int[target + 1];
    maximum[0] = 1;
    Arrays.sort(nums);
    for (int i = 1; i <= target; i++) {
        for (int j = 0; j < nums.length && nums[j] <= i; j++) {
            maximum[i] += maximum[i - nums[j]];
        }
    }
    return maximum[target];
C
CyC2018 已提交
923 924 925
}
```

C
CyC2018 已提交
926
# 股票交易
C
CyC2018 已提交
927

C
CyC2018 已提交
928
## 需要冷却期的股票交易
C
CyC2018 已提交
929

C
CyC2018 已提交
930
[309. Best Time to Buy and Sell Stock with Cooldown(Medium)](https://leetcode.com/problems/best-time-to-buy-and-sell-stock-with-cooldown/description/)
C
CyC2018 已提交
931 932 933

题目描述:交易之后需要有一天的冷却时间。

C
CyC2018 已提交
934
![](index_files/c847d6e4-3610-4f3c-a909-89a5048426e6.png)
C
CyC2018 已提交
935 936

```java
C
CyC2018 已提交
937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954
public int maxProfit(int[] prices) {
    if (prices == null || prices.length == 0) {
        return 0;
    }
    int N = prices.length;
    int[] buy = new int[N];
    int[] s1 = new int[N];
    int[] sell = new int[N];
    int[] s2 = new int[N];
    s1[0] = buy[0] = -prices[0];
    sell[0] = s2[0] = 0;
    for (int i = 1; i < N; i++) {
        buy[i] = s2[i - 1] - prices[i];
        s1[i] = Math.max(buy[i - 1], s1[i - 1]);
        sell[i] = Math.max(buy[i - 1], s1[i - 1]) + prices[i];
        s2[i] = Math.max(s2[i - 1], sell[i - 1]);
    }
    return Math.max(sell[N - 1], s2[N - 1]);
C
CyC2018 已提交
955 956 957
}
```

C
CyC2018 已提交
958
## 需要交易费用的股票交易
C
CyC2018 已提交
959

C
CyC2018 已提交
960
[714. Best Time to Buy and Sell Stock with Transaction Fee (Medium)](https://leetcode.com/problems/best-time-to-buy-and-sell-stock-with-transaction-fee/description/)
C
CyC2018 已提交
961 962

```html
C
CyC2018 已提交
963 964 965 966 967 968 969 970
Input: prices = [1, 3, 2, 8, 4, 9], fee = 2
Output: 8
Explanation: The maximum profit can be achieved by:
Buying at prices[0] = 1
Selling at prices[3] = 8
Buying at prices[4] = 4
Selling at prices[5] = 9
The total profit is ((8 - 1) - 2) + ((9 - 4) - 2) = 8.
C
CyC2018 已提交
971 972 973 974
```

题目描述:每交易一次,都要支付一定的费用。

C
CyC2018 已提交
975
![](index_files/79e9a938-43e2-4c5a-8de9-fe55522a14c9.png)
C
CyC2018 已提交
976 977

```java
C
CyC2018 已提交
978 979 980 981 982 983 984 985 986 987 988 989 990 991 992
public int maxProfit(int[] prices, int fee) {
    int N = prices.length;
    int[] buy = new int[N];
    int[] s1 = new int[N];
    int[] sell = new int[N];
    int[] s2 = new int[N];
    s1[0] = buy[0] = -prices[0];
    sell[0] = s2[0] = 0;
    for (int i = 1; i < N; i++) {
        buy[i] = Math.max(sell[i - 1], s2[i - 1]) - prices[i];
        s1[i] = Math.max(buy[i - 1], s1[i - 1]);
        sell[i] = Math.max(buy[i - 1], s1[i - 1]) - fee + prices[i];
        s2[i] = Math.max(s2[i - 1], sell[i - 1]);
    }
    return Math.max(sell[N - 1], s2[N - 1]);
C
CyC2018 已提交
993 994 995 996
}
```


C
CyC2018 已提交
997
## 只能进行两次的股票交易
C
CyC2018 已提交
998

C
CyC2018 已提交
999
[123. Best Time to Buy and Sell Stock III (Hard)](https://leetcode.com/problems/best-time-to-buy-and-sell-stock-iii/description/)
C
CyC2018 已提交
1000 1001

```java
C
CyC2018 已提交
1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019
public int maxProfit(int[] prices) {
    int firstBuy = Integer.MIN_VALUE, firstSell = 0;
    int secondBuy = Integer.MIN_VALUE, secondSell = 0;
    for (int curPrice : prices) {
        if (firstBuy < -curPrice) {
            firstBuy = -curPrice;
        }
        if (firstSell < firstBuy + curPrice) {
            firstSell = firstBuy + curPrice;
        }
        if (secondBuy < firstSell - curPrice) {
            secondBuy = firstSell - curPrice;
        }
        if (secondSell < secondBuy + curPrice) {
            secondSell = secondBuy + curPrice;
        }
    }
    return secondSell;
C
CyC2018 已提交
1020 1021 1022
}
```

C
CyC2018 已提交
1023
## 只能进行 k 次的股票交易
C
CyC2018 已提交
1024

C
CyC2018 已提交
1025
[188. Best Time to Buy and Sell Stock IV (Hard)](https://leetcode.com/problems/best-time-to-buy-and-sell-stock-iv/description/)
C
CyC2018 已提交
1026 1027

```java
C
CyC2018 已提交
1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047
public int maxProfit(int k, int[] prices) {
    int n = prices.length;
    if (k >= n / 2) {   // 这种情况下该问题退化为普通的股票交易问题
        int maxProfit = 0;
        for (int i = 1; i < n; i++) {
            if (prices[i] > prices[i - 1]) {
                maxProfit += prices[i] - prices[i - 1];
            }
        }
        return maxProfit;
    }
    int[][] maxProfit = new int[k + 1][n];
    for (int i = 1; i <= k; i++) {
        int localMax = maxProfit[i - 1][0] - prices[0];
        for (int j = 1; j < n; j++) {
            maxProfit[i][j] = Math.max(maxProfit[i][j - 1], prices[j] + localMax);
            localMax = Math.max(localMax, maxProfit[i - 1][j] - prices[j]);
        }
    }
    return maxProfit[k][n - 1];
C
CyC2018 已提交
1048 1049 1050
}
```

C
CyC2018 已提交
1051
# 字符串编辑
C
CyC2018 已提交
1052

C
CyC2018 已提交
1053
## 删除两个字符串的字符使它们相等
C
CyC2018 已提交
1054

C
CyC2018 已提交
1055
[583. Delete Operation for Two Strings (Medium)](https://leetcode.com/problems/delete-operation-for-two-strings/description/)
C
CyC2018 已提交
1056 1057

```html
C
CyC2018 已提交
1058 1059 1060
Input: "sea", "eat"
Output: 2
Explanation: You need one step to make "sea" to "ea" and another step to make "eat" to "ea".
C
CyC2018 已提交
1061 1062 1063 1064 1065
```

可以转换为求两个字符串的最长公共子序列问题。

```java
C
CyC2018 已提交
1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078
public int minDistance(String word1, String word2) {
    int m = word1.length(), n = word2.length();
    int[][] dp = new int[m + 1][n + 1];
    for (int i = 1; i <= m; i++) {
        for (int j = 1; j <= n; j++) {
            if (word1.charAt(i - 1) == word2.charAt(j - 1)) {
                dp[i][j] = dp[i - 1][j - 1] + 1;
            } else {
                dp[i][j] = Math.max(dp[i][j - 1], dp[i - 1][j]);
            }
        }
    }
    return m + n - 2 * dp[m][n];
C
CyC2018 已提交
1079 1080 1081
}
```

C
CyC2018 已提交
1082
## 编辑距离
C
CyC2018 已提交
1083

C
CyC2018 已提交
1084
[72. Edit Distance (Hard)](https://leetcode.com/problems/edit-distance/description/)
C
CyC2018 已提交
1085 1086

```html
C
CyC2018 已提交
1087
Example 1:
C
CyC2018 已提交
1088

C
CyC2018 已提交
1089 1090
Input: word1 = "horse", word2 = "ros"
Output: 3
C
CyC2018 已提交
1091
Explanation:
C
CyC2018 已提交
1092 1093 1094 1095
horse -> rorse (replace 'h' with 'r')
rorse -> rose (remove 'r')
rose -> ros (remove 'e')
Example 2:
C
CyC2018 已提交
1096

C
CyC2018 已提交
1097 1098
Input: word1 = "intention", word2 = "execution"
Output: 5
C
CyC2018 已提交
1099
Explanation:
C
CyC2018 已提交
1100 1101 1102 1103 1104
intention -> inention (remove 't')
inention -> enention (replace 'i' with 'e')
enention -> exention (replace 'n' with 'x')
exention -> exection (replace 'n' with 'c')
exection -> execution (insert 'u')
C
CyC2018 已提交
1105 1106 1107 1108 1109
```

题目描述:修改一个字符串成为另一个字符串,使得修改次数最少。一次修改操作包括:插入一个字符、删除一个字符、替换一个字符。

```java
C
CyC2018 已提交
1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131
public int minDistance(String word1, String word2) {
    if (word1 == null || word2 == null) {
        return 0;
    }
    int m = word1.length(), n = word2.length();
    int[][] dp = new int[m + 1][n + 1];
    for (int i = 1; i <= m; i++) {
        dp[i][0] = i;
    }
    for (int i = 1; i <= n; i++) {
        dp[0][i] = i;
    }
    for (int i = 1; i <= m; i++) {
        for (int j = 1; j <= n; j++) {
            if (word1.charAt(i - 1) == word2.charAt(j - 1)) {
                dp[i][j] = dp[i - 1][j - 1];
            } else {
                dp[i][j] = Math.min(dp[i - 1][j - 1], Math.min(dp[i][j - 1], dp[i - 1][j])) + 1;
            }
        }
    }
    return dp[m][n];
C
CyC2018 已提交
1132 1133 1134
}
```

C
CyC2018 已提交
1135
## 复制粘贴字符
C
CyC2018 已提交
1136

C
CyC2018 已提交
1137
[650. 2 Keys Keyboard (Medium)](https://leetcode.com/problems/2-keys-keyboard/description/)
C
CyC2018 已提交
1138

C
CyC2018 已提交
1139
题目描述:最开始只有一个字符 A,问需要多少次操作能够得到 n 个字符 A,每次操作可以复制当前所有的字符,或者粘贴。
C
CyC2018 已提交
1140 1141

```
C
CyC2018 已提交
1142 1143
Input: 3
Output: 3
C
CyC2018 已提交
1144
Explanation:
C
CyC2018 已提交
1145 1146 1147 1148
Intitally, we have one character 'A'.
In step 1, we use Copy All operation.
In step 2, we use Paste operation to get 'AA'.
In step 3, we use Paste operation to get 'AAA'.
C
CyC2018 已提交
1149 1150 1151
```

```java
C
CyC2018 已提交
1152 1153 1154 1155 1156 1157
public int minSteps(int n) {
    if (n == 1) return 0;
    for (int i = 2; i <= Math.sqrt(n); i++) {
        if (n % i == 0) return i + minSteps(n / i);
    }
    return n;
C
CyC2018 已提交
1158 1159 1160 1161
}
```

```java
C
CyC2018 已提交
1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174
public int minSteps(int n) {
    int[] dp = new int[n + 1];
    int h = (int) Math.sqrt(n);
    for (int i = 2; i <= n; i++) {
        dp[i] = i;
        for (int j = 2; j <= h; j++) {
            if (i % j == 0) {
                dp[i] = dp[j] + dp[i / j];
                break;
            }
        }
    }
    return dp[n];
C
CyC2018 已提交
1175 1176
}
```