#dynamicprogramming kết quả tìm kiếm
📘 Wrapped up with the 7th Dynamic Programming pattern — DP on LIS (Longest Increasing Subsequence)! 🎯 Up Next: ➡️ DP on MCM (Matrix Chain Multiplication)! ➡️ DP on Squares! #StriversA2ZDSASheet #100DaysOfCode #DynamicProgramming #DSA #CodingJourney




🧩 LeetCode 300: Longest Increasing Subsequence 🔑 Idea → DP + Binary Search ⚡ Approach → Recursion + Memoization → Tabulation → O(n log n) 💡 Learning → Optimizing step by step shows the true power of DP 🚀 #LeetCode #DynamicProgramming #DSA #100DaysOfCode #ProblemSolving

📅 22 August 2025 ✅ Solved: 📈Longest String Chain 📝 Number of Longest Increasing Subsequences 🎯 Longest Bitonic Subsequence ✅Finished dp on LIS #DynamicProgramming #CodingJourney #LeetCode #100DaysOfCode #ProblemSolving



#Day 19 working with @cracked_black ✅ Solved 2 LeetCode questions ✅ Started with Dynamic Programming ✅ Made progress on my React project Step by step 🚀 #DSA #DynamicProgramming #React"



Print Longest Increasing Subsequence 1️⃣ Build dp - length of LIS at each index 2️⃣ Use hash - track predecessors to backtrack 3️⃣ Find LIS end, trace back, reverse - actual subsequence #DynamicProgramming #100DaysOfCode #LearnInPublic #Coding #DSA

Learning in public #Day35 1. DSA - 4 questions on DP on subsets and subsequences, Leetcode 2035(hard q). less productive day :( #DynamicProgramming

#DynamicProgramming. started today learn 3 approaches to tackle after recursion m1->top to down approach m2->tabulation OR down to UP approach m3->Space Optimisation approach(m2 ka pattern dekho kuchh milega wahi m3 hai)




Leetcode 300. Longest Increasing Subsequence 1️⃣ Naive recursion: take/skip - exponential 2️⃣ Add "last chosen index" - valid subsequences 3️⃣ Memoize (ind,last+1) Brute -> State -> DP #LearnInPublic #100DaysOfCode #DynamicProgramming #LeetCode

12 August, 2025 ✅Solved: ✅Assign Cookies using two-pointer approach ✅Coin change I ✅Target Sum, through memoization, tabulation, and space optimization #100DaysOfCode #DynamicProgramming #LeetCode #java



📅20 August 2025 ✅ Solved: 🔹 Longest Increasing Subsequence using Memoization, Tabulation & Space Optimization 🔹 Print Longest Increasing Subsequence 💻 Revised Generics and Built a Custom ArrayList in Java #100DaysOfCode #DynamicProgramming #Java #DSA #CodingJourney #LeetCode




Leetcode 1092. Shortest Common Supersequence Build LCS table to find overlaps 1️⃣ If chars match - extend sequence 2️⃣ If not - take max from left/top 3️⃣ Backtrack through DP table to build final supersequence #DynamicProgramming #LearnInPublic #LeetCode

🧩 LeetCode 1547: Minimum Cost to Cut a Stick 🔑 Idea → Interval #DP + Divide & Conquer ⚡ Approach → Recursive splits + memoization 💡 Learning → DP on partitions = optimal cuts + state reuse 🚀 #LeetCode #DynamicProgramming #Algorithms #DSA #ProblemSolving #100DaysOfCode

💻 DSA Day 55 Today I learned Best Time to Buy & Sell Stock (DP on Stocks). Used Dynamic Programming (space optimized). Time Complexity: O(n) Space Complexity: O(1) 👉 Key Idea: Keep track of the minimum price & maximize profit. #100DaysOfCode #DSA #DynamicProgramming


Leetcode 322. coin change 1️⃣ State: (ind, amt) 2️⃣•Don’t pick coin •Pick current coin (stay at same ind) 3️⃣ Memoize to avoid re-solving subproblems 4️⃣ Base case: exact division by smallest coin 5️⃣ If impossible return -1 #100DaysOfCode #LearnInPublic #DynamicProgramming

🔺Day 56/100 DSA Solved Triangle Minimum Path Sum using bottom-up DP. Pick the smaller of the two paths below at each step → final answer at the top! 💡 #100DaysOfCode #DSA #DynamicProgramming

📈 Day 133: LIS & LCS Double DP dose today! ✔️ Longest Increasing Subsequence ✔️ Longest Common Subsequence – classic 2D DP table approach #DynamicProgramming #LIS #LCS #gfg160 #100DaysOfCode #geekstreak2025 @geeksforgeeks



Day 18/100 💻#100DaysOfCode 🧩 DSA: Solved Unique Paths & Unique Paths II Practiced Memoization, Tabulation, & Space Optimization in DP ☁️ AWS: Covered AWS Global Infrastructure IAM & Root User Security Hosted an Employee Directory App on AWS 🚀 #DynamicProgramming #AWS



📘 Wrapped up with the 7th Dynamic Programming pattern — DP on LIS (Longest Increasing Subsequence)! 🎯 Up Next: ➡️ DP on MCM (Matrix Chain Multiplication)! ➡️ DP on Squares! #StriversA2ZDSASheet #100DaysOfCode #DynamicProgramming #DSA #CodingJourney




Nonlinear and Dynamic Programming. Hadley ADDISON-WESLEY. 1964. 484p. 15.7×23.4 2000TL #NonlinearProgramming #DynamicProgramming #akademikzam instagram.com/p/DHNgmM9Kkwe/…
Just cracked the classic "Word Wrap" problem using Dynamic Programming! 💻 Think backward—calculating the minimum cost from the end of the array to the start. Amazing how dp[i] = cost(i, j) + dp[j+1] turns a complex problem into simple, repeatable steps. #dynamicprogramming
Day 22/100 💻#100DaysOfCode 🧩 DSA: Solved Decode Ways Solved Cherry Pickup II 🍒 Tackling tougher DP patterns — decoding logic and optimizing paths step by step ⚡ #DynamicProgramming #DSA #CodingJourney #100DaysChallenge


🚀 DSA Series #8 — Dynamic Programming 🧠 DP isn’t just recursion — it’s recursion with memory. Once it clicks, you stop solving problems and start optimizing them. 👇 Read here 🔗 medium.com/@vinayakmalviy… #DSA #DynamicProgramming #ProblemSolving #CodingJourney
DP Problem Set Complete 10 DP problems on LeetCode. Focus on identifying DP patterns and building solutions incrementally. #dynamicprogramming #dp #day25
Day 18/100 💻#100DaysOfCode 🧩 DSA: Solved Unique Paths & Unique Paths II Practiced Memoization, Tabulation, & Space Optimization in DP ☁️ AWS: Covered AWS Global Infrastructure IAM & Root User Security Hosted an Employee Directory App on AWS 🚀 #DynamicProgramming #AWS



Day 23 of #LeetCodeJourney 🚀 Solved 3539. Find Sum of Array Product of Magical Sequences (Hard) 💫 This one was really tough 😮💨 — had to refer the solution to understand the recursive DP with carry propagation and combinatorics. #LeetCode #DynamicProgramming #100DaysOfCode
🔥 LeetCode Daily Challenge — Accepted! 🏆 Beats 99.36% in runtime (422 ms) Cracked this one using recursive thinking + memoization, smart combinatorics, and modular arithmetic. 💡 Runtime: 422 ms 💾 Memory: 34 MB #LeetCode #Python #DynamicProgramming #Coding #Day44

Day 15/100 ✅ LeetCode POTD solved! Am I the only one who thinks DP questions require you to think like this?! 😂 Streak: 🔥 73 days strong! #LeetCode #100DaysOfCode #DynamicProgramming
Finally solved @LeetCode 3539 (Hard) after 7 attempts 😤 It took me around 1 hour 37 mins to solve it. This one was intense . #LeetCode #DynamicProgramming #Coding #DSA #HardProblem

🚀 Day 444 of Code 🚀 Solved : ✅ 3186. Maximum Total Damage With Spell Casting #Day444 #LeetCode #DynamicProgramming #ProblemSolving #Algorithms #CodingJourney #DSA #Optimization #100DaysOfCode


Day 17/100 💻#100DaysOfCode 🧩 Solved: Frog Jump Frog Jump with K Distances Maximum Sum of Non-Adjacent Elements House Robber #DSA #DynamicProgramming #AWS #CloudComputing #100DaysChallenge #CodingJourney




(Open Access) Dynamic Programming and Bayesian Inference, Concepts and Applications: freecomputerbooks.com/Dynamic-Progra… Look for "Read and Download Links" section to download. Follow me if you like #DynamicProgramming #Bayesian #BayesianInference #Statistics #LinearProgramming #Optimization

📘 Wrapped up with the 7th Dynamic Programming pattern — DP on LIS (Longest Increasing Subsequence)! 🎯 Up Next: ➡️ DP on MCM (Matrix Chain Multiplication)! ➡️ DP on Squares! #StriversA2ZDSASheet #100DaysOfCode #DynamicProgramming #DSA #CodingJourney




#DynamicProgramming. started today learn 3 approaches to tackle after recursion m1->top to down approach m2->tabulation OR down to UP approach m3->Space Optimisation approach(m2 ka pattern dekho kuchh milega wahi m3 hai)




🧩 LeetCode 300: Longest Increasing Subsequence 🔑 Idea → DP + Binary Search ⚡ Approach → Recursion + Memoization → Tabulation → O(n log n) 💡 Learning → Optimizing step by step shows the true power of DP 🚀 #LeetCode #DynamicProgramming #DSA #100DaysOfCode #ProblemSolving

🔺Day 56/100 DSA Solved Triangle Minimum Path Sum using bottom-up DP. Pick the smaller of the two paths below at each step → final answer at the top! 💡 #100DaysOfCode #DSA #DynamicProgramming

Print Longest Increasing Subsequence 1️⃣ Build dp - length of LIS at each index 2️⃣ Use hash - track predecessors to backtrack 3️⃣ Find LIS end, trace back, reverse - actual subsequence #DynamicProgramming #100DaysOfCode #LearnInPublic #Coding #DSA

🧩 LeetCode 1547: Minimum Cost to Cut a Stick 🔑 Idea → Interval #DP + Divide & Conquer ⚡ Approach → Recursive splits + memoization 💡 Learning → DP on partitions = optimal cuts + state reuse 🚀 #LeetCode #DynamicProgramming #Algorithms #DSA #ProblemSolving #100DaysOfCode

🚀Day 28 of DSA Journey: Solved DP Question #DSA #CodingJourney #DynamicProgramming #100DaysOfCode Maximum sum of non-adjacent elements

12 August, 2025 ✅Solved: ✅Assign Cookies using two-pointer approach ✅Coin change I ✅Target Sum, through memoization, tabulation, and space optimization #100DaysOfCode #DynamicProgramming #LeetCode #java



💻 DSA Day 55 Today I learned Best Time to Buy & Sell Stock (DP on Stocks). Used Dynamic Programming (space optimized). Time Complexity: O(n) Space Complexity: O(1) 👉 Key Idea: Keep track of the minimum price & maximize profit. #100DaysOfCode #DSA #DynamicProgramming


Learning in public #Day35 1. DSA - 4 questions on DP on subsets and subsequences, Leetcode 2035(hard q). less productive day :( #DynamicProgramming

Day 63 of #100DaysOfCode 🚀 Solved Minimum Score Triangulation of Polygon (LeetCode 1039). #LeetCode #DynamicProgramming #ProblemSolving

📈 Day 133: LIS & LCS Double DP dose today! ✔️ Longest Increasing Subsequence ✔️ Longest Common Subsequence – classic 2D DP table approach #DynamicProgramming #LIS #LCS #gfg160 #100DaysOfCode #geekstreak2025 @geeksforgeeks



Leetcode 1092. Shortest Common Supersequence Build LCS table to find overlaps 1️⃣ If chars match - extend sequence 2️⃣ If not - take max from left/top 3️⃣ Backtrack through DP table to build final supersequence #DynamicProgramming #LearnInPublic #LeetCode

🚀 Day 359 of Code 🚀 Solved: ✅ 3202. Find the Maximum Length of Valid Subsequence II #Day359 #DynamicProgramming #2DDP #LeetCode #CodingChallenge #DSA #Greedy #Subsequence #TechJourney #ProblemSolving

Leetcode 300. Longest Increasing Subsequence 1️⃣ Naive recursion: take/skip - exponential 2️⃣ Add "last chosen index" - valid subsequences 3️⃣ Memoize (ind,last+1) Brute -> State -> DP #LearnInPublic #100DaysOfCode #DynamicProgramming #LeetCode

Leetcode 322. coin change 1️⃣ State: (ind, amt) 2️⃣•Don’t pick coin •Pick current coin (stay at same ind) 3️⃣ Memoize to avoid re-solving subproblems 4️⃣ Base case: exact division by smallest coin 5️⃣ If impossible return -1 #100DaysOfCode #LearnInPublic #DynamicProgramming

🚀Day 27 of DSA Journey: Solved DP Question #DSA #CodingJourney #DynamicProgramming #100DaysOfCode Frog Jump

#Day83 Solved Coin Change II 💰using Tabulation DP 🔹Transition: if coins[i-1] <= j: dp[i][j] = dp[i][j - coins[i-1]] + dp[i-1][j] else → exclude: dp[i][j] = dp[i-1][j] Pattern: Count of subsets with repetition allowed #DynamicProgramming #LeetCode #100DaysOfCode #DSA #tech
![singh_jayraj_05's tweet image. #Day83
Solved Coin Change II 💰using Tabulation DP
🔹Transition:
if coins[i-1] &lt;= j:
dp[i][j] = dp[i][j - coins[i-1]] + dp[i-1][j]
else → exclude: dp[i][j] = dp[i-1][j]
Pattern: Count of subsets with repetition allowed
#DynamicProgramming #LeetCode #100DaysOfCode #DSA #tech](https://pbs.twimg.com/media/GzmxUK_bEAATVw5.jpg)
🚀 Day 383 of Code 🚀 Solved: ✅ 2787. Ways to Express an Integer as Sum of Powers #Day383 #LeetCode #DynamicProgramming #Math #Combinatorics #DSA #ProblemSolving #CodingChallenge #Algorithm #DataStructures #100DaysOfCode

Something went wrong.
Something went wrong.
United States Trends
- 1. Good Tuesday 24.2K posts
- 2. White House 106K posts
- 3. #tuesdayvibe 1,491 posts
- 4. Cobie 37.3K posts
- 5. Sanae Takaichi 69.4K posts
- 6. Texans 39.3K posts
- 7. WE ARE PROUD OF TAEHYUNG 31.6K posts
- 8. World Series 120K posts
- 9. NBA IS BACK 8,474 posts
- 10. Blue Jays 103K posts
- 11. WE LOVE YOU TAEHYUNG 36.4K posts
- 12. East Wing 79.6K posts
- 13. Gucci 26.3K posts
- 14. Seahawks 38.5K posts
- 15. Joe Carter 3,296 posts
- 16. Nick Caley 2,799 posts
- 17. Coinbase 51.2K posts
- 18. Curtis 40.6K posts
- 19. LA Knight 8,988 posts
- 20. Diddy 21.2K posts