Skip to content

Commit

Permalink
Merge pull request CyC2018#251 from zhaoyu606/patch-1
Browse files Browse the repository at this point in the history
Update Leetcode 题解.md
  • Loading branch information
CyC2018 authored May 16, 2018
2 parents a87769a + d124a42 commit 9ffd41d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion notes/Leetcode 题解.md
Original file line number Diff line number Diff line change
Expand Up @@ -2365,7 +2365,7 @@ private int rob(int[] nums, int first, int last) {
定义一个数组 dp 存储错误方式数量,dp[i] 表示 i 个信和信封的错误方式数量。假设第 i 个信装到第 j 个信封里面,而第 j 个信装到第 k 个信封里面。根据 i 和 k 是否相等,有两种情况:

- 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 种取值,因此共有 (n-1)\*dp[i-1] 种错误装信方式。
- i != k,交换 i 和 j 的信后,第 i 个信和信封在正确的位置,其余 i-1 封信有 dp[i-1] 种错误装信方式。由于 j 有 i-1 种取值,因此共有 (i-1)\*dp[i-1] 种错误装信方式。

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

Expand Down

0 comments on commit 9ffd41d

Please sign in to comment.