Unique Binary Search Trees - Leetcode 96 - Python Dynamic Programming

  Рет қаралды 70,894

NeetCode

NeetCode

Күн бұрын

Пікірлер: 66
@NeetCode
@NeetCode 4 жыл бұрын
Dynamic Programming Playlist: kzbin.info/www/bejne/bWTVZH6Nnqqpr80
@TrollFreeInternet
@TrollFreeInternet 2 жыл бұрын
I think there is a mistake with the last value at 7:45...it should be numTree[3]* numTree[0]..not numTree[3]*numTree[1]... it won't make difference to the answer but it might confuse some people.
@08JuHan
@08JuHan 2 жыл бұрын
Thanks for posting it! Java version in case anyone's interested class Solution { public int numTrees(int n) { int[] dp = new int[n + 1]; dp[0] = 1; dp[1] = 1; for (int nodeCount = 2; nodeCount
@lizziedaffofil6064
@lizziedaffofil6064 3 жыл бұрын
No one can beat you in giving such a clear explanation even to complex topics! Way to go!
@chaoluncai4300
@chaoluncai4300 2 жыл бұрын
fr dawg, neetcode is the only person that drove me solve(watch) 10+ medium+ problems in one day
@aatishjain9770
@aatishjain9770 2 жыл бұрын
Had no idea how to approach this problem after reading the problem statement. Not sure when will get over this. As always best and savior for us. Thanks a ton bro.
@uncleroku8962
@uncleroku8962 4 жыл бұрын
Question: at 7:40 you said that when you get to the last value (the node being 4). You'd have one node in your right subtree. Wouldn't it be zero values in your subtree when 4 is the root, since all other nodes would be smaller?
@anthonysummit3098
@anthonysummit3098 3 жыл бұрын
Yeah
@chaoluncai4300
@chaoluncai4300 2 жыл бұрын
@@anthonysummit3098 yeh
@saijannali9725
@saijannali9725 Жыл бұрын
I was wondering the same thing, makes sense
@AlfranAli
@AlfranAli 3 жыл бұрын
For this particular problem, if you see the pattern it's following catalan number which can be solved in O(n) time & O(1) space, just mentioning it here for future readers to go and check that out too. Nice initiative, keep up the good work! :)
@RebornAc3
@RebornAc3 2 жыл бұрын
Very helpful, thank you!
@mayankkhanna9644
@mayankkhanna9644 3 жыл бұрын
If I got this problem in an interview, I would cry. But not anymore..
@tanaysingh5348
@tanaysingh5348 Жыл бұрын
crisp explanation
@chujunlu919
@chujunlu919 2 жыл бұрын
When you change variable i, j from Leetcode's solution to something descriptive, like this video does, suddenly the underlying thinking comes through, and the code makes sense.
@NeetCode
@NeetCode 2 жыл бұрын
Glad it was helpful!
@apoorvbedmutha457
@apoorvbedmutha457 Жыл бұрын
The explainnation is so good ! you're an absolute legend
@siningsun4160
@siningsun4160 7 ай бұрын
The best explanation I've ever seen.
@mehulsolanki9435
@mehulsolanki9435 2 жыл бұрын
My recursive solution with memoization: def numTrees(self, n: int) -> int: self.trees = {} self.trees[0] = 1 self.trees[1] = 1 self.trees[2] = 2 return self.getTrees(n) def getTrees(self, n): if n in self.trees: return self.trees[n] l,r = 0,n-1 res = 0 while r>=0: res += ( self.getTrees(l) * self.getTrees(r) ) l += 1 r -= 1 self.trees[n] = res return res
@nikhilgoyal007
@nikhilgoyal007 Жыл бұрын
thanks! for line #13 - I would have think - root should go from 0 to node +1 ( even if left is None for root = 0 - there our some combinations that will result from the right side ?). what am i missing pls ?
@nikhilgoyal007
@nikhilgoyal007 Жыл бұрын
Got it. 1: n + 1 is n nodes. if I had done 0: n, it would have been n nodes too (plus I would have to worry about left = root - 1 out of bound error.
@Saurabh2816
@Saurabh2816 Жыл бұрын
DOUBT: line 6, numTrees[3]*numTree[1]. When we pick the last node as the root node we would have 3 values in the left subtree and 1 value in the right subtree. Why? Should we have 0 values in the right subtree? As we selected the last value as root then there will be no choices to make for the right subtree it would be just a null.
@tripathi5174
@tripathi5174 4 жыл бұрын
was struglling for one day and then i found this helpful video , very well done
@atanunayak6637
@atanunayak6637 Жыл бұрын
I understand everything in the solution, except for the thing that why do we just multiply the values, I mean there can be other cases as well right? Let me elaborate, If you draw the diagram for 5 nodes solution, for f(5) we have f(3)*f(1) is good, but the three on the left also have 4C3 choices right?
@samuraijosh1595
@samuraijosh1595 Жыл бұрын
yeah the code based on the combinatorics seems to work but i dont get what the fuck is combinatorics doing here at all. i wonder if youve figured it out?
@samuraijosh1595
@samuraijosh1595 Жыл бұрын
ok now i got why we multiply them. firslty, a small correction for f (5) we have f(3) on the left and f(1) on the right subtree only for root node 4. {1, 2, 3} --- 4 --- {5 } now {1, 2, 3} can be arranged in how many unique trees is calculated by f(3) and so is {5} calculated. we get f(3) = 5, f(1) = 1. good. this is a simple case to explain where we have unique three things of one kind and 1 thing of another kind. so there's only three ways to arrange these two togetehr wohtout reptions such that they both get exist at the same time. if we take a case like f(3) on the left and f(2) on the right: we have three blue balls and 2 red balls. how would you arrange 3 blue balls with 2 red balls wihtout reptitions? 3 * 2 = 6 is the way to do it.
@wlcheng
@wlcheng 3 жыл бұрын
Brilliant solution. Thank you!
@polyrain
@polyrain 3 жыл бұрын
Why did you n+1 in the memo table? Just to capture numTree[0]? Great vid!
@LaithBasilDotNet
@LaithBasilDotNet 3 жыл бұрын
Even though the top down dynamic programming approach works, leetcode timeout for it.
@pahehepaa4182
@pahehepaa4182 4 жыл бұрын
Thanks! This was sweet. Easy to understand. Other videos are complicating stuff 😶 Subscribed.
@arsahilar
@arsahilar Жыл бұрын
@7:44 fOR LAST VALUE shouldn't it be NODE[3] in left * and NODE[0] on right
@andreytamelo1183
@andreytamelo1183 2 жыл бұрын
Thanks!
@shuvbhowmickbestin
@shuvbhowmickbestin 25 күн бұрын
Do you type with your mouse? I hear the clicking sounds.
@tanhnguyen2025
@tanhnguyen2025 11 ай бұрын
Are you using the Bottom-up approach for this problem? Because I think you had the two base value from which u can work your way up to adding those to n 😂
@symbol767
@symbol767 2 жыл бұрын
Crazy how they can give you these type of problems on an interview, I would have failed hard. But now I wont thanks to you
@JosephJostar-j2x
@JosephJostar-j2x 2 жыл бұрын
excellent explaination
@calvincruzada1016
@calvincruzada1016 2 жыл бұрын
such a clear explanation, wowzers
@ameynaik2743
@ameynaik2743 3 жыл бұрын
Can you please make another video on unique bst ii I.e listing the possibilities?
@lindama1276
@lindama1276 2 жыл бұрын
Why is num trees 0 equal 1?
@negarvahid
@negarvahid 2 жыл бұрын
Because we only have one option which is NULL.(or None)
@tirupatirao7521
@tirupatirao7521 2 жыл бұрын
Great one
@mashab9129
@mashab9129 3 жыл бұрын
wow! as always the best explanation.
@KidUnicefalo
@KidUnicefalo 4 жыл бұрын
Thanks a lot, amazing explanation!
@patthiccc
@patthiccc 4 жыл бұрын
How do you decide on Memo dimensions? That is always where I go wrong. I'll try to use a 2d memo or 1d memo when the opposite is needed and I get nowhere.
@NeetCode
@NeetCode 4 жыл бұрын
That's a great question because figuring out the dimensions is usually the key in DP problems. Whenever i make a mistake in difficult problems I usually look for slightly easier problems in the same category. I solve these before repeating the difficult problem. Even with practice i still occassionally make mistakes, but I hope this helps!
@abhicasm9237
@abhicasm9237 Жыл бұрын
Hey @patthiccc, I hope that you would know better than me right now, but to add my 2 cents... What I have noticed from my practice is that the dimension of the dp depends on the number of variables that are changing. In cases like the knapsack where the index and the target changes, we use 2d array to store the index and the respective target. Hope it helps.
@johnj171
@johnj171 3 ай бұрын
I love youi i just love you man you are great at teaching
@Assta77
@Assta77 Жыл бұрын
But where are we ignoring the similar the structures like 2->1->3 and 3->1->2 have same structures. Aren't we considering both of them?
@modreamer
@modreamer 2 жыл бұрын
hmmm, I thought it was n. Calculate once (O(n)) for for recursion and the rest can be accessed in (O(1)) => n. Where am I wrong hmmmm?
@deidarasenpai3243
@deidarasenpai3243 Жыл бұрын
can someone explain how time Complexity is O(n^2) . I think it must be n!
@hayyan612
@hayyan612 Жыл бұрын
suppose n=3 so nodes would be 1,2,3 for us to return the final answer we need to find number of unique bsts we can make with all nodes (1,2,3) as root nodes for each root node we'll have to compute the left and right child from the nodes which makes it O(n^2)
@arenmkhoyan
@arenmkhoyan Жыл бұрын
Recursion is bad and slow, we have to use dp
@eccheong
@eccheong Жыл бұрын
There is a mistake at line 6 I think. Thanks for the solution nevertheless
@aviralarpan7350
@aviralarpan7350 2 жыл бұрын
I am best
@fefefefefee32
@fefefefefee32 2 жыл бұрын
I don't understand. Forgive me but this isn't so clear to me.
@pawankumarmeena6737
@pawankumarmeena6737 4 жыл бұрын
💯
@jhonrobaon1669
@jhonrobaon1669 2 жыл бұрын
I have a question at 4:13 (kzbin.info/www/bejne/hamThZikg5iNpsk), can you please let me know why we need to multiply for combinations?
@somdutroy
@somdutroy 2 жыл бұрын
Let's say the the left side the tree has 3 combinations makes as A, B, C and the right side has two combinations D, E. So, the possible trees are A-root-D, A-root-E, B-root-D, B-root-E, C-root-D, C-root-E. Hence, 6 combinations or 3*2 in this case.
@TheAlexanderEdwards
@TheAlexanderEdwards 2 жыл бұрын
@@somdutroy Thank you for this explanation!
@RobinHistoryMystery
@RobinHistoryMystery 8 ай бұрын
I think, Im just gonna be confused about this question, cant understand this question at all, watched so many videos about it sigh... time to move on
@RobinHistoryMystery
@RobinHistoryMystery 8 ай бұрын
im back, still confused, I hope I never cross path with this question in my life
@MishkatMazumder
@MishkatMazumder 4 ай бұрын
@@RobinHistoryMystery haha
@CS_n00b
@CS_n00b 8 ай бұрын
*click* noice
@jay-rathod-01
@jay-rathod-01 3 жыл бұрын
This sounds like a pretty simple problem😐 If it were simple why would i be here.
@NeetCode
@NeetCode 3 жыл бұрын
That's true, the seemingly simple problems are always the most challenging
@tlz124
@tlz124 Ай бұрын
This guy is a genius but I'm not. I wish he did a side by side of the code and the explanation
Integer Break - Dynamic Programming - Leetcode 343 - Python
17:41
Unique Binary Search Trees II - Leetcode 95 - Python
12:51
NeetCodeIO
Рет қаралды 19 М.
Who is More Stupid? #tiktok #sigmagirl #funny
0:27
CRAZY GREAPA
Рет қаралды 10 МЛН
UFC 287 : Перейра VS Адесанья 2
6:02
Setanta Sports UFC
Рет қаралды 486 М.
Counter-Strike 2 - Новый кс. Cтарый я
13:10
Marmok
Рет қаралды 2,8 МЛН
L33. Requirements needed to construct a Unique Binary Tree | Theory
8:41
Characters, Symbols and the Unicode Miracle - Computerphile
9:37
Computerphile
Рет қаралды 2 МЛН
Find Duplicate Subtrees - Leetcode 652 - Python
14:33
NeetCodeIO
Рет қаралды 20 М.
Delete and Earn - Dynamic Programming - Leetcode 740 - Python
19:09
Premature Optimization
12:39
CodeAesthetic
Рет қаралды 834 М.
Binary Search Tree Iterator - Leetcode 173 - Python
12:47
NeetCode
Рет қаралды 42 М.
Dynamic Programming isn't too hard. You just don't know what it is.
22:31
DecodingIntuition
Рет қаралды 197 М.
Who is More Stupid? #tiktok #sigmagirl #funny
0:27
CRAZY GREAPA
Рет қаралды 10 МЛН