From Special to General¶
Table of Contents¶
- 2745. Construct the Longest New String (Medium)
- 2611. Mice and Cheese (Medium)
- 1029. Two City Scheduling (Medium)
- 2645. Minimum Additions to Make Valid String (Medium)
- 2202. Maximize the Topmost Element After K Moves (Medium)
- 2568. Minimum Impossible OR (Medium)
- 1702. Maximum Binary String After Change (Medium)
- 3012. Minimize Length of Array Using Operations (Medium)
- 1526. Minimum Number of Increments on Subarrays to Form a Target Array (Hard)
- 2350. Shortest Impossible Sequence of Rolls (Hard)
- 517. Super Washing Machines (Hard)
- 2499. Minimum Total Cost to Make Arrays Unequal (Hard)
- 3357. Minimize the Maximum Adjacent Element Difference (Hard)
2745. Construct the Longest New String¶
-
LeetCode | LeetCode CH (Medium)
-
Tags: math, dynamic programming, greedy, brainteaser
2611. Mice and Cheese¶
-
LeetCode | LeetCode CH (Medium)
-
Tags: array, greedy, sorting, heap priority queue
1029. Two City Scheduling¶
-
LeetCode | LeetCode CH (Medium)
-
Tags: array, greedy, sorting
2645. Minimum Additions to Make Valid String¶
-
LeetCode | LeetCode CH (Medium)
-
Tags: string, dynamic programming, stack, greedy
2202. Maximize the Topmost Element After K Moves¶
-
LeetCode | LeetCode CH (Medium)
-
Tags: array, greedy
2568. Minimum Impossible OR¶
-
LeetCode | LeetCode CH (Medium)
-
Tags: array, bit manipulation, brainteaser
1702. Maximum Binary String After Change¶
-
LeetCode | LeetCode CH (Medium)
-
Tags: string, greedy
3012. Minimize Length of Array Using Operations¶
-
LeetCode | LeetCode CH (Medium)
-
Tags: array, math, greedy, number theory
1526. Minimum Number of Increments on Subarrays to Form a Target Array¶
-
LeetCode | LeetCode CH (Hard)
-
Tags: array, dynamic programming, stack, greedy, monotonic stack
2350. Shortest Impossible Sequence of Rolls¶
-
LeetCode | LeetCode CH (Hard)
-
Tags: array, hash table, greedy
517. Super Washing Machines¶
-
LeetCode | LeetCode CH (Hard)
-
Tags: array, greedy
2499. Minimum Total Cost to Make Arrays Unequal¶
-
LeetCode | LeetCode CH (Hard)
-
Tags: array, hash table, greedy, counting
3357. Minimize the Maximum Adjacent Element Difference¶
-
LeetCode | LeetCode CH (Hard)
-
Tags: array, binary search, greedy