Binary Tree Maximum Path Sum - DFS - Leetcode 124 - Python

Ғылым және технология

🚀 neetcode.io/ - A better way to prepare for Coding Interviews
🐦 Twitter: / neetcode1
🥷 Discord: / discord
🐮 Support the channel: / neetcode
Twitter: / neetcode1
Discord: / discord
⭐ BLIND-75 SPREADSHEET: docs.google.com/spreadsheets/...
💡 CODING SOLUTIONS: • Coding Interview Solut...
💡 DYNAMIC PROGRAMMING PLAYLIST: • House Robber - Leetco...
🌲 TREE PLAYLIST: • Invert Binary Tree - D...
💡 GRAPH PLAYLIST: • Course Schedule - Grap...
💡 BACKTRACKING PLAYLIST: • Word Search - Backtrac...
💡 LINKED LIST PLAYLIST: • Reverse Linked List - ...
Problem Link: neetcode.io/problems/binary-t...
0:00 - Read the problem
4:26 - Drawing Explanation
11:56 - Coding Explanation
leetcode 124
This question was identified as a facebook interview question from here: github.com/xizhengszhang/Leet...
#dfs #python
Disclosure: Some of the links above may be affiliate links, from which I may earn a small commission.

Пікірлер: 163

  • @NeetCode
    @NeetCode3 жыл бұрын

    🚀 neetcode.io/ - I created a FREE site to make interview prep a lot easier, hope it helps! ❤

  • @AnnieBox

    @AnnieBox

    2 жыл бұрын

    Q: we only need to get the max sum WITH split, and we already update it inside of the dfs, then why we still need to return the max sum WITHOUT split from the dfs?

  • @kippesolo8941

    @kippesolo8941

    Жыл бұрын

    i wonder how this works with negative values, shouldnt "leftMax = max(leftMax, 0)" turn any negative number into 0 ?

  • @kippesolo8941

    @kippesolo8941

    Жыл бұрын

    @@AnnieBox how do you think we update leftMax and rightMax then?

  • @bowenli5886
    @bowenli58863 жыл бұрын

    When I search for an explanation, yours would always be my first choice, even though I don't use python, the way you explain each problem is just informative and enlightening, thank you!

  • @shaikdiary

    @shaikdiary

    2 жыл бұрын

    +1. I use Java, but i watch your videos for logical solution and then implement in java on my own (or watch other Java solution videos to refer the implementation details)

  • @hitarthdaxeshbhaikothari1688

    @hitarthdaxeshbhaikothari1688

    2 жыл бұрын

    Yes, same! I use C++ but always come for explanation here :)

  • @ShivamKumar-qv6em

    @ShivamKumar-qv6em

    2 жыл бұрын

    @@hitarthdaxeshbhaikothari1688 same here bro .

  • @mingjuhe1514

    @mingjuhe1514

    2 жыл бұрын

    +1 this is a very good channel.

  • @sagivalia5041

    @sagivalia5041

    Жыл бұрын

    I find it a great way to understand it by translating his Python code to the language I use

  • @nehascorpion
    @nehascorpion Жыл бұрын

    Very well explained! I love your videos so much. Your channel is my first resort when I am stuck with complex algorithms. Even the Leetcode solutions are not this simple to understand. Thank you so so much! :)

  • @KartikeyaPuri45
    @KartikeyaPuri456 ай бұрын

    This is the best explanation for this problem I've ever seen. I struggled so much with wrapping my head around the solution in CTCI. Yours makes so much more sense, I wasn't even all the way through your explanation, but was still able to use what I learnt from it to code this up quickly on Leetcode. Thank you man, you're a legend!

  • @minh1391993
    @minh13919932 жыл бұрын

    can't believe that actually solved that many problem and upload the explanation to KZread :D . Currently, start my leetcode prac and found your channel here. Amazing work.

  • @srinadhp
    @srinadhp3 жыл бұрын

    Spent so much time on this problem to understand the problem statement.. yours is by far the best explanation on what is expected of the problem and how to solve it as well. The idea of splits and why we should send 0 is very helpful to understand. Lots of appreciations! Keep up the good work! You are helping a lot!!

  • @Nick-kb2jc

    @Nick-kb2jc

    2 жыл бұрын

    Dude, same here. I hated this problem.

  • @numberonep5404
    @numberonep54042 жыл бұрын

    a version without the global variable res (it worked for me at least): class Solution: def maxPathSum(self, root: Optional[TreeNode]) -> int: def dfs(root): if not root: return 0, float("-inf") left, wl = dfs(root.left) left = max(left,0) right, wr = dfs(root.right) right = max(right,0) res = max(wl, wr, root.val+left+right) return root.val+max(left,right) , res return dfs(root)[1]

  • @PhanNghia-fk5rv

    @PhanNghia-fk5rv

    2 ай бұрын

    did u handle the case where root.val > root.val + max(left, right) ?

  • @aleksey3231

    @aleksey3231

    2 ай бұрын

    gj man. The code is indeed concise and beautiful

  • @ShivamKumar-qv6em
    @ShivamKumar-qv6em2 жыл бұрын

    Nice explanation . Very helpful . The way of explaining through diagram makes the things crystal clear .

  • @supercarpro
    @supercarpro Жыл бұрын

    Mate if it wasn't for your vids I'd be so lost. Was able to do this hard problem on my own today after studying your vids for months. I haven't tried it since 4 months ago but was easily able to come to the solution after learning your patterns. This was just a postorder traversal. Thanks

  • @katzy687
    @katzy687 Жыл бұрын

    I've noticed you tend to do that list by reference trick for primitive values. Python also has built in way to do that, you can declare the variable normally, and then inside the DFS, do "nonlocal" res. def max_path_sum(root): res = root.val def dfs(node): nonlocal res if not node: return 0 etc.....

  • @linli7049
    @linli70493 жыл бұрын

    I am totally stunned by this solution. You are so amazing.

  • @nachiket9857
    @nachiket9857 Жыл бұрын

    Here's using nonlocal and also not having to check leftMax and rightMax twice for 0 class Solution: def maxPathSum(self, root: Optional[TreeNode]) -> int: res = root.val def traverse(node): if not node: return 0 leftMax = traverse(node.left) rightMax = traverse(node.right) nonlocal res res = max(res, node.val + leftMax + rightMax) return max(0, node.val + max(leftMax, rightMax)) traverse(root) return res

  • @yu-jencheng556
    @yu-jencheng556 Жыл бұрын

    Your explanation is so brilliant and clear so that it seems like this is a medium or even easy problem instead of hard! Really appreciate your work and I really think Leetcode should use your solutions whenever possible!

  • @Nick-kb2jc
    @Nick-kb2jc2 жыл бұрын

    Thank you so much for this explanation. I don't know who comes up with these Leetcode problems but this problem was so damn confusing. Leetcode doesn't provide enough example inputs/outputs for Hard problems like this. I had no idea what was defined as a "path" and it was so frustrating because I was running the solution code and still not understanding why I was getting certain values.

  • @zl7460

    @zl7460

    Жыл бұрын

    Exactly. I coded a solution assuming 1 node is not 'non-empty', since there is no 'path'... Problem description is very unclear.

  • @kartiksoni825
    @kartiksoni8259 ай бұрын

    BRILLIANT explanation, thank you Neetcode!

  • @chaengsaltz829
    @chaengsaltz8292 жыл бұрын

    Wow! You're the master! Thanks for sharing!

  • @gaaligadu148
    @gaaligadu1482 жыл бұрын

    Highly underrated channel! Much Appreciated Content !

  • @NeetCode

    @NeetCode

    2 жыл бұрын

    Glad it's helpful!

  • @siqb
    @siqb3 жыл бұрын

    Thank you so much for this brilliant explanation. One tiny remark: Perhaps using a "nonlocal res" in the dfs() function and saving the direct sum instead of a list might have been more clean.

  • @dongdongchen455

    @dongdongchen455

    2 жыл бұрын

    how to do that?

  • @zhengzuo5118

    @zhengzuo5118

    2 жыл бұрын

    How to do that? I can’t use a single variable for res because it always gives an error

  • @sagarpotnis1215

    @sagarpotnis1215

    2 жыл бұрын

    @@dongdongchen455 in the dfs function at the top just define 'nonlocal res' at the top

  • @JaiSagar7
    @JaiSagar7 Жыл бұрын

    Awesome explaination of the problem with the optimised solution approach 🔥🔥

  • @maryamlarijani5550
    @maryamlarijani55503 жыл бұрын

    Great explanation! may talk about time complexity too.

  • @numberonep5404
    @numberonep54042 жыл бұрын

    Lovely content btw, i can't believe how simple u make it

  • @mohamedhabibjaouadi3933
    @mohamedhabibjaouadi39332 жыл бұрын

    Thank you for the wonderful content. My question is why going with the array syntax for res, it would be simpler syntactically to use a normal variable. The Javascript equivalent, note that functions mutate global variables (wouldn't recommend it but it works): let res = 0 const dfs = (root) => { if (!root){ return 0 } let leftMax = dfs(root.left) let rightMax = dfs(root.right) leftMax = Math.max(0, leftMax) rightMax = Math.max(0, rightMax) res = Math.max(res, root.val + leftMax + rightMax) return root.val + Math.max(leftMax, rightMax) } const maxPathSum = (root) => { res = root.val dfs(root) return res };

  • @japarjarkynbyek8494

    @japarjarkynbyek8494

    6 ай бұрын

    Try to run exact code in Python. You get error because you gonna change that "res" is not defined in that sub function I guess or you cannot mutate global primitive value

  • @rentianxiang92
    @rentianxiang922 жыл бұрын

    requesting more interview problems, thank you as always

  • @michaelmarchese5865
    @michaelmarchese58654 ай бұрын

    For some reason, I find it more intuitive to only use max() for selecting the largest choice, rather than also using it to coerce negatives to zero: def maxPathSum(self, root: Optional[TreeNode]) -> int: def maxLeg(root: Optional[TreeNode]) -> int: nonlocal max_path if not root: return 0 l = maxLeg(root.left) r = maxLeg(root.right) p = root.val max_leg = max(p, p + l, p + r) max_path = max(max_path, max_leg, p + l + r) return max_leg max_path = -1001 maxLeg(root) return max_path

  • @mama1990ish
    @mama1990ish2 жыл бұрын

    Keep sharing new videos ! Your videos are awesome :)

  • @AnnieBox
    @AnnieBox2 жыл бұрын

    nice and neat explanation!! 👍

  • @Grawlix99
    @Grawlix99 Жыл бұрын

    BTW, you can directly plug in '0' as an option when returning from the recursive function. In that case, you only need two or three 'max()' operations, not four: class Solution: def maxPathSum(self, root: Optional[TreeNode]) -> int: self.res = root.val def dfs(node): if not node: return 0 right = dfs(node.right) left = dfs(node.left) self.res = max(self.res, node.val + left + right) return max(node.val + max(left, right), 0) # Alternate return statement: # return max(node.val+left, node.val+right, 0) dfs(root) return self.res

  • @SomeThinkingOFF
    @SomeThinkingOFF Жыл бұрын

    explained so smoothly!!!👌👌👌

  • @sachinwalunjakar8854
    @sachinwalunjakar88542 жыл бұрын

    Thanks for making such great content for learning, I have one question "how much time you require to solve hard question like this ?"

  • @MySWESpace
    @MySWESpace2 жыл бұрын

    Do you have a github link with your code solutions? Your explanations are amazing!

  • @Rob-147
    @Rob-147 Жыл бұрын

    This one really confused me. Thanks so much for your explanation.

  • @chelsylan8554
    @chelsylan85547 ай бұрын

    very clear! thank you!

  • @mitchellhuang5488
    @mitchellhuang54882 жыл бұрын

    Such a clean and clear explanation!

  • @themagickalmagickman
    @themagickalmagickman Жыл бұрын

    I actually solved this one on my one, granted its one of the easier hard problems (and my code ran pretty slow, beat 28%). However, I originally misinterpreted the question as find the max subtree, not path. Luckily it was literally one line of code difference between the two problems the way I solved it, but its a good reminder to make sure you really understand what is being asked.

  • @roman_mf
    @roman_mf Жыл бұрын

    Another banger of a solution. I was so close, yet so far :')

  • @anandkrishnan72
    @anandkrishnan722 жыл бұрын

    such an amazing video.

  • @rakeshkashyap84
    @rakeshkashyap842 жыл бұрын

    Best explanation. Downgraded the question to Medium level. Thank you!

  • @emmatime2016
    @emmatime20163 жыл бұрын

    You are just great!

  • @edwardteach2
    @edwardteach22 жыл бұрын

    U a God. I thought I had to implement dp somewhere, but glad I didn't! Thanks!

  • @edwardteach2

    @edwardteach2

    2 жыл бұрын

    Python implementation: class Solution(object): def maxPathSum(self, root): """ :type root: TreeNode :rtype: int """ self.ans = float('-inf') def dfs(root): if not root: return 0 left = dfs(root.left) right = dfs(root.right) left = max(left, 0) right = max(right, 0) self.ans = max(self.ans, root.val + left + right) return root.val + max(left, right) dfs(root) return self.ans

  • @hardikjoshi8111
    @hardikjoshi8111 Жыл бұрын

    Another way to conceptualise what constitutes a path is to only have those nodes or vertices in consideration that have at most 2 edges.

  • @ObtecularPk
    @ObtecularPk2 жыл бұрын

    yeah there is no way i'm solving this in 45 minutes interview question ...

  • @monicawang8447
    @monicawang84473 жыл бұрын

    heyy quick confirmation question: I notice that the dfs function has return statement after we update res[0], but this very last value that's returned didn't get used, does it mean it's for the root to pass to its parent? (but since it's already the root, it won't pass it further, so we just ignore it? Thank uu!! really love ur videos!!

  • @NeetCode

    @NeetCode

    3 жыл бұрын

    Yup thats exactly correct! and thanks for the kind words

  • @monicawang8447

    @monicawang8447

    2 жыл бұрын

    @@NeetCode Heyy NeetCode, I was doing this problem again and noticed that you used 'res' as an array whereas I just used it as a variable. However, when everything else stays the same, it gives scope error and I had to add "nonlocal res" in the dfs function. I'm confused that both methods are changing 'res' in the inner function, but why does your method not need "nonlocal"?

  • @johns3641

    @johns3641

    2 жыл бұрын

    @@monicawang8447 You can modify lists, sets, dictionaries that are initiated outside of the function but you can't do that with strings/ints (which sounds like what you did at the end). Because you set res as an integer instead of a list, you have to add the words nonlocal for python to know that it has to modify the variable outside of the dfs function. Just a python quirk, hope that helps

  • @nachiket9857

    @nachiket9857

    Жыл бұрын

    Returning the value of the actual root would assume that the path traverses through root, so it could be solution to a problem which has that constraint I believe (for anyone reading this later)

  • @NitinPatelIndia
    @NitinPatelIndia3 жыл бұрын

    Great explanation! Thank you so much.

  • @ilanaizelman3993
    @ilanaizelman39932 жыл бұрын

    This is gold.

  • @mehull408
    @mehull4088 ай бұрын

    Amazing explanation ❤

  • @hwang1607
    @hwang16077 ай бұрын

    good solution thank you

  • @KeyAndLock77
    @KeyAndLock777 ай бұрын

    Awesome explanation. I solved but took some times and mistakes but what I learned is that if you don't solve problem on paper, don't code it. You are likely to go towards a dead end in 45 minute interview. Better solve it fully on the paper with all edge cases and then coding is like 5 minutes

  • @begula_chan
    @begula_chan5 ай бұрын

    Thank you very much!

  • @mingjunma293
    @mingjunma2932 жыл бұрын

    thx!! But I have a question. Why we use the array to store the final result?

  • @wilsonwang8641

    @wilsonwang8641

    2 жыл бұрын

    @Caleb Rigg explains this well below

  • @mohithadiyal6083
    @mohithadiyal60832 жыл бұрын

    How can be space complexity be O(h) we aren't using any extra memory ,are we?

  • @NeetCode

    @NeetCode

    2 жыл бұрын

    Good question, the memory comes from the recursion call stack.

  • @mohithadiyal6083

    @mohithadiyal6083

    2 жыл бұрын

    @@NeetCode thank you 😁

  • @m_jdm357
    @m_jdm357Ай бұрын

    All leetcode problems should be like this

  • @eamonmahon6622
    @eamonmahon66222 жыл бұрын

    Great solution and video! Why does using a list for the res make modifying it within the recursive function easier?

  • @howheels

    @howheels

    Жыл бұрын

    It's not really "easier" but it avoids having to specify "nonlocal" inside the dfs function. IMHO using a list for res is not as intuitive, but you save a whopping 1 line of code.

  • @souparnomajumder
    @souparnomajumder3 ай бұрын

    def dfs(node): if not node: return 0, float("-inf") left, left_max = dfs(node.left) right, right_max = dfs(node.right) return max(node.val, node.val + max(left, right)), \ max(node.val, node.val + max(left, right, left + right), left_max, right_max) _, max_val = dfs(root) return max_val

  • @yamaan93
    @yamaan93 Жыл бұрын

    I'm a little confused as to how the result gets updated to include conditions where you don't split. ie, we never really check for cases where we only take a path 1 way if that maxes sense

  • @beonthego8725

    @beonthego8725

    10 ай бұрын

    The question says , the path does not need to pass through the root

  • @albertjtyeh53
    @albertjtyeh533 жыл бұрын

    general question, when analyzing trees, often you are calculating something recursively, is that considered overlapping subproblems or not? and are binary trees considered inherently optimal substructures? or not. thanks! btw love your videos and subbed!

  • @tejeshreddy6252

    @tejeshreddy6252

    2 жыл бұрын

    Hey, not sure if you still need the answer but here goes... Generally with a tree all nodes are unique so there are no sub-problems like in fibonacci series etc. In the latter case, we have non-unique nodes such as 2, 3, 5 which we have to traverse again to get to the bigger solution

  • @symbol767
    @symbol7672 жыл бұрын

    Thanks man

  • @yunierperez2680
    @yunierperez26804 ай бұрын

    Excellent explanation thanks! Just curios why 'res' needs to be an array if you are only using the 0 index, is this a python thing?

  • @michaelmarchese5865

    @michaelmarchese5865

    4 ай бұрын

    In python, you can read a variable from a higher scope (meaning from outside the function) without a problem. But if you try to modify that variable, it'll think you are trying to create a new local variable, leading to exceptions/bugs. To modify the preexisting variable from outside the function, you need to use the nonlocal keyword. For some reason, neetcode guy decided to avoid nonlocal in favor of a hack. He uses a list for his higher-scoped variable because then he can store the actual value inside of it and modify that rather than the list itself, avoiding the issues I mentioned above. But don't do this. Use nonlocal. In addition to nonlocal, there is a global keyward that does the same but for globals. Neetcode refers to res as a global variable, but it's not. It belongs to the outer function.

  • @keremt8727
    @keremt8727 Жыл бұрын

    Shouldn't we return max (dfs(root), res[0]) as the result (it could be the case that either left or right path is negative)?

  • @beonthego8725

    @beonthego8725

    10 ай бұрын

    The question says , the path does not need to pass through the root.

  • @arnobpl

    @arnobpl

    Ай бұрын

    "The path does not need to pass through the root" sounds like a flexibility but not a constrain. Otherwise, it should say, "the path must not pass through the root." I am confused with the same thing. I tested the code in both ways and both pass all the test cases.

  • @arnobpl

    @arnobpl

    Ай бұрын

    Anyway, I understood why max(dfs(root), res[0]) is not needed. It is nothing related to "the path does not need to pass through the root". In fact, in Example 1, the max path does pass through the root (2+1+3=6). It is because: think about the dfs call when root.val is the actual root of the tree. In line 22, both leftMax and rightMax are non-zeros due to line 16-17, so we are also considering either left or right path being negative. That is why we do not need max(dfs(root), res[0]). That is redundant.

  • @RS-vu4nn
    @RS-vu4nn2 жыл бұрын

    In other languages you can use static variable inside the function instead of global variable

  • @colin398

    @colin398

    2 жыл бұрын

    or an instance variable, anything works either way its not actually global just outsidd the scope of the inner method

  • @noumaaaan
    @noumaaaan2 жыл бұрын

    I just paused the video to write a comment here to say that I feel like I've watched so much of your content, at this point it just feels like I'm talking to you lol.

  • @farazahmed7

    @farazahmed7

    2 жыл бұрын

    koi company nikaali wikaali?

  • @telnet8674
    @telnet86742 жыл бұрын

    I was expecting an implementation kinda similar to the house robber III prob lem

  • @cavinkumaranmahalingam7570
    @cavinkumaranmahalingam7570Ай бұрын

    Hi, my concern is "How am i supposed to come with such logics when I'm given such problems in any interview?". If you got anything other than "Through practice !" , then I would love to know ; )

  • @bulioh
    @bulioh4 ай бұрын

    In case this helps things 'click' for anyone, I realized this is really similar to Maximum Subarray. In fact if the tree had no splits (were just a linked list) it would be the same algo. But since the tree _can_ split, it just means we have _two_ running sums to look at instead of one.

  • @heisenberg1844
    @heisenberg18443 жыл бұрын

    Amazed.

  • @onlineservicecom
    @onlineservicecom2 жыл бұрын

    Could you give the time complexity and space complexity ?

  • @bloodfiredrake7259
    @bloodfiredrake72597 ай бұрын

    What is all the values are negatives?

  • @KhoaLe-oc6xl
    @KhoaLe-oc6xl2 жыл бұрын

    This problem should be marked "Easy with Leetcode video" lol. Thank you for making things so comprehensive !

  • @ameynaik2743
    @ameynaik27433 жыл бұрын

    Great video, is there a github location where I can find all your codes?

  • @TechOnScreen

    @TechOnScreen

    2 жыл бұрын

    yes.. navigate to this url github.com/neetcode-gh/leetcode

  • @akhilattri844
    @akhilattri844 Жыл бұрын

    thanks

  • @suri4Musiq
    @suri4MusiqАй бұрын

    You should redo this problem in 2024. Some mistakes I found - you mention adding when you were talking about `max()`, you don't have to use an array for `res` and then just return the first element, it could be a variable. You don't even need that value. You can just do `return dfs(root)`

  • @MrSaurus
    @MrSaurus10 ай бұрын

    I am still confused about line 24. Can anyone explain to me how it works?

  • @tarek7451
    @tarek74512 жыл бұрын

    What's the best way to solve without using the global variable?

  • @Saralcfc

    @Saralcfc

    2 жыл бұрын

    Return tuple of values (max_path_without_splitting, max_path_with_splitting)

  • @mehershrishtinigam5449
    @mehershrishtinigam54492 жыл бұрын

    What is the time complexity ?

  • @tomarintomarin9520
    @tomarintomarin95202 жыл бұрын

    Ok let's write some more neetcode if you says so

  • @justincao7356
    @justincao73562 жыл бұрын

    thank you! Hope this one like and a comment support the channel!

  • @gazijarin8866
    @gazijarin88662 жыл бұрын

    God's work

  • @Kenspectacle
    @Kenspectacle3 ай бұрын

    I don't understand, why do you need to make res into a list?

  • @NapoleonNol
    @NapoleonNol2 жыл бұрын

    so why does the list for res allow it to be changed in the function?

  • @minyoungan9515

    @minyoungan9515

    2 жыл бұрын

    @Nolan were you able to figure it out?

  • @avenged7ex

    @avenged7ex

    2 жыл бұрын

    @@minyoungan9515 In Python, lists are a mutable object, while primitive type assignments are not (You can think about this like saying lists are always passed by reference, and objects like integers are not). So by passing a list containing a value, the reference to the list isn't lost, yet we're able to change the value inside of it. Another work-around would be to declare the result within the object, where it can be referenced using self.res . Another choice would be to define res outside of the dfs() function, and then define it again within the function using the nonlocal keyword.

  • @minyoungan9515

    @minyoungan9515

    2 жыл бұрын

    @@avenged7ex Thanks for the explanation :) That makes sense

  • @thevagabond85yt
    @thevagabond85yt Жыл бұрын

    3:17 "this(implying 2+1+3+5) is obviously the maximum we can create" BUT NO the right sub tree 4+3+5 =12 is the max sum path.

  • @herdata_eo4492
    @herdata_eo44922 жыл бұрын

    why do we need computations for path sum with split then? someone please enlighten me on this 😮‍💨

  • @mehershrishtinigam5449
    @mehershrishtinigam54492 жыл бұрын

    u have a gift my guy

  • @ancai5498
    @ancai54987 ай бұрын

    Here is the cpp version with code explanation: int res = INT_MIN; int maxPathSum(TreeNode* root) { dfs(root); return res; } // return max value through current node // max value either comes from: // 1. split at current node; // 2. split through parent node, max value current node could provide. int dfs(TreeNode *node) { if (!node) { return 0; } int left = dfs(node->left); left = max(left, 0); int right = dfs(node->right); right = max(right, 0); // split at current node. res = max(res, node->val + left + right); // not split to parent level, max value current node could provide return node->val + max(left, right); }

  • @radishanim
    @radishanim2 жыл бұрын

    you can just use `self.res` instead of [res] to modify the value globally. using the properties of a list to achieve this might be seen as a little hacky by the interviewer.

  • @rishabhverma3615
    @rishabhverma36152 жыл бұрын

    Can someone explain the concept of adding 0 while updating leftMax and rightMax?

  • @SandeepKumar16

    @SandeepKumar16

    2 жыл бұрын

    The idea behind comparing with 0 is - We don't want to add up negative numbers in the path. Because that would decrease the sum. So we compare with 0. If leftMax is negative, max(leftMax, 0) with give 0. Adding 0 to the result will not effect the result.

  • @nisusrk
    @nisusrk2 жыл бұрын

    What if all the nodes are negative?

  • @avenged7ex

    @avenged7ex

    2 жыл бұрын

    This is handled by always including the current node's value in the max() calls. The result variable would be assigned to the largest individual node value in that case, as it is always included in any max() call.

  • @nithingowda1060
    @nithingowda10602 жыл бұрын

    can anyone tell me time and space complexicity please?

  • @asrahussain8642
    @asrahussain864211 ай бұрын

    this is kinda like house robber 3

  • @ujjawalpanchal
    @ujjawalpanchal6 ай бұрын

    Why is your `res = [root.val]` as opposed to `res = root.val`? Why make it a list?

  • @anantmittal522
    @anantmittal522 Жыл бұрын

    Can anyone provide O(n^2) solution to this problem ?

  • @veliea5160
    @veliea51602 жыл бұрын

    leftMax is a node, how come `max(leftMax,0)` returns a value?

  • @avenged7ex

    @avenged7ex

    2 жыл бұрын

    LeftMax isn't a node, it is the returned value from the dfs() call which is passed the node as a parameter. The code runs recursively until the node is determined to be null (meaning we've reached the end of the tree) and return 0. At the bottom of the recursion stack we calculate the max values between this new 0 value and the value of the leaf node, and return a maximum value (see how we just returned the max? this is the integer value leftNode is assigned). Now the recursion calls begin to finish, all-the-while passing the previous maximums to the leftMax and rightMax variables.

  • @satadhi
    @satadhi2 жыл бұрын

    can you guys explain why the res is list instead of a simple variable

  • @avenged7ex

    @avenged7ex

    2 жыл бұрын

    simple variables are immutable (think of this as passed by value), whereas, lists are mutable (passed by reference). In order to change the value of the result, he's wrapped it in a list so that the reference to the answer is never lost, while allowing him to alter the value within the lists contents. Another work around would be to declare the res variable as an instance of the Solution class (self.res). Or by declaring it outside the dfs() function, and also within it using the keyword nonlocal (i.e. nonlocal res).

  • @Ifeelphat

    @Ifeelphat

    2 жыл бұрын

    @@avenged7ex interesting so was the list used to improve performance?

  • @avenged7ex

    @avenged7ex

    2 жыл бұрын

    @@Ifeelphat no, it was used to increase readability

  • @saugatkarki3169

    @saugatkarki3169

    Жыл бұрын

    it shows UnboundLocalError when a simple variable is used instead of a list. that's what it did for me.

  • @liamsism

    @liamsism

    Жыл бұрын

    @@avenged7ex tuples are immutable too but it works with them.

  • @darrylbrian
    @darrylbrian2 жыл бұрын

    why make the global variable - res - an array with one item? why not just set the value to the item itself? we never push or append anything else to it. just curious, thank you for all that you've done.

  • @VipulDessaiBadGAMERbaD

    @VipulDessaiBadGAMERbaD

    2 жыл бұрын

    it works even if its not used as array, actually it should be just a simple variable

  • @disha4545
    @disha4545 Жыл бұрын

    Can anyone explain why he used res[0], why not just use res, not make it a list since the start declaration ?

  • @shivanshgupta5657

    @shivanshgupta5657

    Ай бұрын

    global variable declaration i think. ChatGPT suggested this.

  • @sankhadip_roy
    @sankhadip_roy10 ай бұрын

    why he have used a list for the res , why not just a integer? can anyone make me understand please!

  • @angelinazhou667

    @angelinazhou667

    Ай бұрын

    Using a list for the res allows us to update the result within the helper function. If res was instead simply a variable that stores an integer, when we try to update it within the helper function, it will create a new variable called res local to the helper function. We use a list to get around this problem or you could alternatively use a variable with the nonlocal keyword

  • @sankhadip_roy

    @sankhadip_roy

    Ай бұрын

    @@angelinazhou667 yes Or can use a class variable using self

  • @joshithmurthy6209
    @joshithmurthy62092 жыл бұрын

    I first tried to solve the question without considering the single path and later I realized it is not allowed

  • @anujkhare3815
    @anujkhare3815 Жыл бұрын

    This problem was something

  • @soukaryasaha3825
    @soukaryasaha3825 Жыл бұрын

    could someone explain how to do this without the global variable

  • @Rob-147

    @Rob-147

    Жыл бұрын

    I did it using a pair of in c++. code is below /** * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNode() : val(0), left(nullptr), right(nullptr) {} * TreeNode(int x) : val(x), left(nullptr), right(nullptr) {} * TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {} * }; */ class Solution { private: pair dfs(TreeNode* root) { if (!root) return make_pair(0,INT_MIN); pair left = dfs(root->left); pair right = dfs(root->right); int currPath = root->val + max(max(left.first,0), max(right.first,0)); int currMaxPath = root->val + max(left.first,0) + max(right.first,0); int maxPath = max(max(left.second,right.second), currMaxPath); return make_pair(currPath, maxPath); } public: int maxPathSum(TreeNode* root) { pair result = dfs(root); return result.second; } };

  • @garciamenesesbrayan
    @garciamenesesbrayan4 ай бұрын

    why global would be considered as cheating?

  • @zl7460
    @zl7460 Жыл бұрын

    I coded a solution assuming 1 node is not 'non-empty', since there is no 'path'... Problem description is very unclear.

  • @ambujhakhu7531
    @ambujhakhu75313 жыл бұрын

    Dude please make videos on path sum 2, 3

Келесі