Skip to content

Latest commit

 

History

History
68 lines (54 loc) · 2.62 KB

9c-dp.md

File metadata and controls

68 lines (54 loc) · 2.62 KB

题目(动态规划)

Intro

  1. https://leetcode.com/problems/coin-change/
  2. https://leetcode.com/problems/unique-paths/
  3. https://leetcode.com/problems/jump-game/

坐标、序列

  1. https://leetcode.com/problems/unique-paths-ii/
  2. https://www.lintcode.com/problem/paint-house/
  3. https://leetcode.com/problems/decode-ways/
  4. https://leetcode.com/problems/longest-continuous-increasing-subsequence/
  5. https://leetcode.com/problems/minimum-path-sum/
  6. https://www.lintcode.com/problem/bomb-enemy/
  7. https://leetcode.com/problems/counting-bits/

状态序列

  1. https://www.lintcode.com/problem/paint-house-ii/
  2. https://leetcode.com/problems/house-robber/
  3. https://leetcode.com/problems/house-robber-ii/
  4. https://leetcode.com/problems/best-time-to-buy-and-sell-stock/
  5. https://leetcode.com/problems/best-time-to-buy-and-sell-stock-ii/
  6. https://leetcode.com/problems/best-time-to-buy-and-sell-stock-iii/
  7. https://leetcode.com/problems/best-time-to-buy-and-sell-stock-iv/
  8. https://leetcode.com/problems/longest-increasing-subsequence/
  9. https://leetcode.com/problems/russian-doll-envelopes/

划分、背包

  1. https://leetcode.com/problems/perfect-squares/
  2. https://leetcode.com/problems/palindrome-partitioning-ii/
  3. https://www.lintcode.com/problem/copy-books/
  4. https://www.lintcode.com/problem/coins-in-a-line/
  5. https://www.lintcode.com/problem/backpack/
  6. https://www.lintcode.com/problem/backpack-v/
  7. https://www.lintcode.com/problem/backpack-iv/

背包、区间

  1. https://www.lintcode.com/problem/backpack-ii/
  2. https://www.lintcode.com/problem/backpack-iii/
  3. https://leetcode.com/problems/longest-palindromic-subsequence/
  4. https://www.lintcode.com/problem/coins-in-a-line-iii/
  5. https://leetcode.com/problems/scramble-string/
  6. https://leetcode.com/problems/burst-balloons/

双序列

  1. https://leetcode.com/problems/longest-common-subsequence/
  2. https://leetcode.com/problems/interleaving-string/
  3. https://leetcode.com/problems/edit-distance/
  4. https://leetcode.com/problems/distinct-subsequences/
  5. https://leetcode.com/problems/regular-expression-matching/
  6. https://leetcode.com/problems/wildcard-matching/
  7. https://leetcode.com/problems/ones-and-zeroes/

DP + 数据结构

  1. https://leetcode.com/problems/longest-increasing-subsequence/ +duplicate
  2. https://www.lintcode.com/problem/k-edit-distance/
  3. https://leetcode.com/problems/frog-jump/
  4. https://www.lintcode.com/problem/minimum-adjustment-cost/
  5. https://www.lintcode.com/problem/k-sum/
  6. https://leetcode.com/problems/maximal-square/
  7. https://leetcode.com/problems/maximal-rectangle/