Skip to content

Latest commit

 

History

History
50 lines (28 loc) · 1.91 KB

File metadata and controls

50 lines (28 loc) · 1.91 KB

Dynamic programming

Table of contents


General information

🎥

📖


Linear partition

Problem: partition (without reordering) a set of non-negative integral numbers into k ranges such that the maximum sum over all the ranges is minimized.

📝

  • This problem has another solution based on binary searching the answer in the space of possible answers that is obtained using a greedy approach.

📖


Longest increasing subsequence

See Sequence algorithms – Longest increasing subsequence.