DP Prefix Sum¶
Table of Contents¶
- 2327. Number of People Aware of a Secret (Medium)
- 1871. Jump Game VII (Medium)
- 1997. First Day Where You Have Been in All the Rooms (Medium)
- 3251. Find the Count of Monotonic Pairs II (Hard)
- 2478. Number of Beautiful Partitions (Hard)
- 837. New 21 Game (Medium)
- 2463. Minimum Total Distance Traveled (Hard)
- 3333. Find the Original Typed String II (Hard)
- 2902. Count of Sub-Multisets With Bounded Sum (Hard)
- 629. K Inverse Pairs Array (Hard)
- 1977. Number of Ways to Separate Numbers (Hard)
- 3130. Find All Possible Stable Binary Arrays II (Hard)
2327. Number of People Aware of a Secret¶
-
LeetCode | LeetCode CH (Medium)
-
Tags: dynamic programming, queue, simulation
1871. Jump Game VII¶
-
LeetCode | LeetCode CH (Medium)
-
Tags: string, dynamic programming, sliding window, prefix sum
1997. First Day Where You Have Been in All the Rooms¶
-
LeetCode | LeetCode CH (Medium)
-
Tags: array, dynamic programming
3251. Find the Count of Monotonic Pairs II¶
-
LeetCode | LeetCode CH (Hard)
-
Tags: array, math, dynamic programming, combinatorics, prefix sum
2478. Number of Beautiful Partitions¶
-
LeetCode | LeetCode CH (Hard)
-
Tags: string, dynamic programming
837. New 21 Game¶
-
LeetCode | LeetCode CH (Medium)
-
Tags: math, dynamic programming, sliding window, probability and statistics
2463. Minimum Total Distance Traveled¶
-
LeetCode | LeetCode CH (Hard)
-
Tags: array, dynamic programming, sorting
3333. Find the Original Typed String II¶
-
LeetCode | LeetCode CH (Hard)
-
Tags: string, dynamic programming, prefix sum
2902. Count of Sub-Multisets With Bounded Sum¶
-
LeetCode | LeetCode CH (Hard)
-
Tags: array, hash table, dynamic programming, sliding window
629. K Inverse Pairs Array¶
-
LeetCode | LeetCode CH (Hard)
-
Tags: dynamic programming
1977. Number of Ways to Separate Numbers¶
-
LeetCode | LeetCode CH (Hard)
-
Tags: string, dynamic programming, suffix array
3130. Find All Possible Stable Binary Arrays II¶
-
LeetCode | LeetCode CH (Hard)
-
Tags: dynamic programming, prefix sum