|
6702 | 6702 | <ul class="metadata page-metadata" data-bi-name="page info" lang="en-us" dir="ltr">
|
6703 | 6703 |
|
6704 | 6704 | Last update:
|
6705 |
| - <span class="git-revision-date-localized-plugin git-revision-date-localized-plugin-date" title="April 24, 2025 08:34:22">April 24, 2025</span>  |
| 6705 | + <span class="git-revision-date-localized-plugin git-revision-date-localized-plugin-date" title="April 24, 2025 08:39:56">April 24, 2025</span>  |
6706 | 6706 |
|
6707 | 6707 | <!-- Tags -->
|
6708 | 6708 |
|
@@ -6815,15 +6815,15 @@ <h2 id="classic-dynamic-programming-problems">Classic Dynamic Programming Proble
|
6815 | 6815 | </thead>
|
6816 | 6816 | <tbody>
|
6817 | 6817 | <tr>
|
6818 |
| -<td><a href="/knapsack.md">0-1 Knapsack</a></td> |
| 6818 | +<td><a href="/dynamic_programming/knapsack.md">0-1 Knapsack</a></td> |
6819 | 6819 | <td>Given <span class="arithmatex">$W$</span>, <span class="arithmatex">$N$</span>, and <span class="arithmatex">$N$</span> items with weights <span class="arithmatex">$w_i$</span> and values <span class="arithmatex">$v_i$</span>, what is the maximum <span class="arithmatex">$\sum_{i=1}^{k} v_i$</span> for each subset of items of size <span class="arithmatex">$k$</span> (<span class="arithmatex">$1 \le k \le N$</span>) while ensuring <span class="arithmatex">$\sum_{i=1}^{k} w_i \le W$</span>?</td>
|
6820 | 6820 | </tr>
|
6821 | 6821 | <tr>
|
6822 | 6822 | <td>Subset Sum</td>
|
6823 | 6823 | <td>Given <span class="arithmatex">$N$</span> integers and <span class="arithmatex">$T$</span>, determine whether there exists a subset of the given set whose elements sum up to the <span class="arithmatex">$T$</span>.</td>
|
6824 | 6824 | </tr>
|
6825 | 6825 | <tr>
|
6826 |
| -<td><a href="/longest_increasing_subsequence.md">Longest Increasing Subsequence (LIS)</a></td> |
| 6826 | +<td><a href="/dynamic_programming/longest_increasing_subsequence.md">Longest Increasing Subsequence (LIS)</a></td> |
6827 | 6827 | <td>You are given an array containing <span class="arithmatex">$N$</span> integers. Your task is to determine the LIS in the array, i.e., a subsequence where every element is larger than the previous one.</td>
|
6828 | 6828 | </tr>
|
6829 | 6829 | <tr>
|
@@ -6854,7 +6854,7 @@ <h2 id="classic-dynamic-programming-problems">Classic Dynamic Programming Proble
|
6854 | 6854 | </table>
|
6855 | 6855 | <h2 id="related-topics">Related Topics<a class="headerlink" href="#related-topics" title="Permanent link">¶</a></h2>
|
6856 | 6856 | <ul>
|
6857 |
| -<li><a href="/profile-dynamics.md">Bitmask Dynamic Programming</a></li> |
| 6857 | +<li><a href="/dynamic_programming/profile-dynamics.md">Bitmask Dynamic Programming</a></li> |
6858 | 6858 | <li>Digit Dynamic Programming</li>
|
6859 | 6859 | <li>Dynamic Programming on Trees</li>
|
6860 | 6860 | </ul>
|
|
0 commit comments