Best Time to Buy and Sell Stock with Cooldown - Leetcode 309 - Python

Sdílet
Vložit
  • čas přidán 27. 07. 2024
  • 🚀 neetcode.io/ - A better way to prepare for Coding Interviews
    🐦 Twitter: / neetcode1
    🥷 Discord: / discord
    🐮 Support the channel: / neetcode
    CODE AVAILABLE HERE 👉 github.com/neetcode-gh/leetco...
    ⭐ BLIND-75 PLAYLIST: • Two Sum - Leetcode 1 -...
    💡 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 - ...
    💡 BINARY SEARCH PLAYLIST: • Binary Search
    📚 STACK PLAYLIST: • Stack Problems
    Problem Link: neetcode.io/problems/buy-and-...
    0:00 - Read the problem
    2:24 - Drawing Explanation
    8:47 - Coding Explanation
    leetcode 309
    This question was identified as a google interview question from here: github.com/xizhengszhang/Leet...
    #buy #stock #python
    Disclosure: Some of the links above may be affiliate links, from which I may earn a small commission.
  • Věda a technologie

Komentáře • 125

  • @DennisSmdFreefightTrainer
    @DennisSmdFreefightTrainer Před 2 lety +53

    thats literally a template for almost all of the "Buy and Sell Stock" Problems on Leetcode. So much more easy to understand and come up with during an interview then the state-machine approach. Thank you Sir!

    • @uniquename2386
      @uniquename2386 Před rokem +2

      Yeah, with this approach you can solve 714. Best Time to Buy and Sell Stock with Transaction Fee.

  • @jamesbotwina8744
    @jamesbotwina8744 Před rokem +19

    I think it would be helpful if you think of the buying state as "looking to buy" state. When it is negative, it means that we have already bought or are calculating what happens if we wait. After we sell, we want to "look to buy" two indexes in the future.

  • @sithlord3442
    @sithlord3442 Před 2 lety +14

    Thank you so much. I was struggling with this problem earlier in the day! Love your explanations

  • @kurtkuhn4045
    @kurtkuhn4045 Před 2 lety +22

    The gods have listened! I was looking your solution to this problem and you helped incredibly. Thank you! The answers posted on LC aren’t very well explained to poor wording

  • @eggfryrice308
    @eggfryrice308 Před 2 lety +62

    Thank you so much, I think you are the best on youtube explaining these. I especially like the fact that you explain the solution without the code first.
    For this problem I think calling the parameter "buying" is not exact, it's more like "canbuy" in my understanding.

    • @NeetCode
      @NeetCode  Před 2 lety +17

      That's a good point, I think "canbuy" is definitely a better name for it.

  • @shrimpo6416
    @shrimpo6416 Před 2 lety +4

    I struggled with this one a whole afternoon and your video just saved my day!

  • @yunaf4609
    @yunaf4609 Před 2 lety +7

    Great explanation. The verbosity of the problem is intimidating but your explanation makes it much simpler, it makes sense as a DP problem.
    Amazing job as always :)

  • @himanshusoni1512
    @himanshusoni1512 Před 2 lety +1

    Thank you so much for the smooth explanation. Your videos always help. Cheers!

  • @sylvesterdzimiri3266
    @sylvesterdzimiri3266 Před 2 lety +2

    Dude just found your channel and its amazing!!! Keep up the great work.

  • @johns3641
    @johns3641 Před 2 lety

    Super cool that you included the code in the description! Keep it up!

  • @rahulsbhatt
    @rahulsbhatt Před 7 měsíci

    I'm amazed by the neetness of your code and clarity for this problem!

  • @snehaldave4834
    @snehaldave4834 Před 2 lety

    Great explanation!!! True, you are good at drawing, I was able to solve puzzle iii and iv with the same drawing technique you used :)

  • @ultraman72
    @ultraman72 Před 2 lety +2

    Thank you so much! I've been waiting for this

    • @NeetCode
      @NeetCode  Před 2 lety +3

      No problem, happy to help

  • @vdyb745
    @vdyb745 Před 2 lety

    This explanation is very clear and on point. Thanks !!!!!

  • @LongNguyen-cn7dp
    @LongNguyen-cn7dp Před 2 lety

    Really appreciate your video. It's easy to understand, rather than some kinda state machine

  • @arunraju9705
    @arunraju9705 Před 2 lety

    Beautiful, man. I appreciate your videos.

  • @hoyinli7462
    @hoyinli7462 Před 2 lety

    thx for ur video again. you saved me a lot of time!

  • @praveenugiri
    @praveenugiri Před rokem

    Great Explanation, Thanks!

  • @sanjanarajan6144
    @sanjanarajan6144 Před 2 lety

    Thanks for the amazing video, made it very simple to understand.
    Can you please add a video for "Best Time to Buy and Sell Stocks with Transaction Fee" also, and explain how different it is from the cooldown version? Thanks in advance.

  • @sk_4142
    @sk_4142 Před 11 měsíci +1

    I really wish you went over the state machine DP solution. Would have loved to see your explanation of it.

  • @venkatrampramod7978
    @venkatrampramod7978 Před rokem +9

    A great explanation again. My dilemma is if one hasn't seen the solution before or solved it on one's own, it would really, really hard to come up with a solution in an actual interview of 45 minutes (unless one is brilliant like you!)
    The other thing is one rarely needs to solve such a problem in real life. The problems that are encountered are more mundane and easy to resolve. If one does encounter such a problem, one would definitely have more than 45 minutes to solve (perhaps several days)

    • @Qwantopides
      @Qwantopides Před rokem +8

      I had the same mindset as you for these types of problems in general. What I have realized however that this approach is simply incorrect.
      Whether or not you may or may not encounter such or similar problems in the wild doesn't matter at all. Your ability to solve novel problems with time or other constraints does.
      And this skill can only be trained by problem solving. Think of your brains ability to solve random problems as a muscle. Keeping with the analogy, to have a good performing brain, you have to train it in ways it isn't used to.

    • @bhoomeendra
      @bhoomeendra Před rokem +1

      @@Qwantopides These are fairly standard problems after doing around 10-15 dp problem you would see the same patterns

    • @brokecoder
      @brokecoder Před 11 měsíci

      Your lazy ass, looking for excuse not to do the problems

  • @user-ee3is4xs5v
    @user-ee3is4xs5v Před 9 měsíci

    I love the idea of deducting the price from profit when you buy the stock, simple trick but make it a lot easier

  • @dryng6006
    @dryng6006 Před 2 lety +18

    Is there a way to do this bottom-up? When you're solving these problems how do you decide whether to just implement top-down (after figuring out brute force) or continue and try to implement bottom-up? Thanks so much!

    • @roshansaundankar4893
      @roshansaundankar4893 Před rokem +1

      This is bottom up he returns a zero and then keeps adding as he keeps going up the recursion tree.

    • @kaelanm-s3919
      @kaelanm-s3919 Před rokem

      buy_prof, sell_prof, sell_prof2 = -1e5, 0, 0
      for p in prices:
      buy_prof = max(buy_prof, sell_prof2-p)
      sell_prof2 = sell_prof
      sell_prof = max(sell_prof, buy_prof+p)
      return sell_prof
      beats 99.8%
      buy_prof = maximum profit if last or current action is buying
      sell_prof = maximum profit if last or current action is selling
      sell_prof2 = previous sell_prof

    • @schan263
      @schan263 Před 10 měsíci +5

      @@roshansaundankar4893 No, this is top-down DP. Bottom-up DP doesn't use recursion.

    • @wij8044
      @wij8044 Před 9 měsíci

      Hash for cache -> top down

  • @uniquename2386
    @uniquename2386 Před rokem

    Great solution, thanks!

  • @vivekcsdiabolicfreak
    @vivekcsdiabolicfreak Před 2 lety +1

    Something which I dont understand, there are multiple nodes with (i, buying), how does memoization work correctly in this case?

  • @vartikasingh6812
    @vartikasingh6812 Před 2 lety

    Awesome explanation. Thanks

  • @ambushedraccoon6408
    @ambushedraccoon6408 Před 9 měsíci

    Great job! What tool Are you using for drawing?

  • @andriidanylov9453
    @andriidanylov9453 Před rokem

    Great solution. Thank You

  • @gonglarry9933
    @gonglarry9933 Před rokem

    dude, thanks for the great work

  • @MAHADMahadmahad7852
    @MAHADMahadmahad7852 Před rokem

    Damn, that's a nice way of thinking about it. I was trying to and able to solve it, but my solution wasn't as efficient and was only better than 10% of the solutions (O(n^2) complexity). Looked at this video and realized my way of caching/memoizing was the issue. Thinking about it in terms of just two decisions is so clever!

  • @eeee8677
    @eeee8677 Před 2 lety

    This was SO helpful

  • @venkateshv626
    @venkateshv626 Před rokem

    does including the cooldown in if else instead of before if else result in fewer function calls?

  • @Messirobben047
    @Messirobben047 Před 2 lety +2

    How did you come up with caching key?

  • @cosepeter2197
    @cosepeter2197 Před rokem

    was able to do buy and sell stock with transaction fee with the same approach. Thanks

  • @anjanobalesh8046
    @anjanobalesh8046 Před rokem

    So clean so precise 😍

  • @anonymoussloth6687
    @anonymoussloth6687 Před 2 lety +3

    Can you do the other variations also?
    1 transaction
    2 transactions
    at most k transactions

  • @josephmasinre1840
    @josephmasinre1840 Před 2 lety +2

    you can make it a bit faster if you consider the fact that you should only buy at local mins, but the overall time complexity is still the same.
    def maxProfit(self, prices: List[int]) -> int:

    DP = {}

    def stock(i, buy):
    if i >= len(prices):
    return 0

    if (i, buy) in DP:
    return DP[(i, buy)]

    if buy:
    j = i
    while j < len(prices)-1 and prices[j] > prices[j+1]: #look for local min
    j += 1
    b = stock(j+1, not buy) - prices[j] #buy at local min
    c = stock(j+1, buy)
    DP[(i, buy)] = max(b, c)

    else:
    s = stock(i+2, not buy) + prices[i]
    c = stock(i+1, buy)
    DP[(i, buy)] = max(s, c)

    return DP[(i, buy)]

    return stock(0, True)

  • @juliuscecilia6005
    @juliuscecilia6005 Před 2 lety

    This is the greatest channel

  • @friction5001
    @friction5001 Před 2 lety

    I did an assignment similar to this on Java it was an electronic trading platform

  • @pamp3657
    @pamp3657 Před 10 měsíci +2

    14:55 for line 21, shouldn't cooldown be equals to dfs(i + 1, not buying) instead of dfs(i + 1, buying)?
    Since you have chosen to not sell and to have a cooldown instead, then as the index increments you CANNOT buy until you sell. dfs(i + 1, buying) would mean that you can choose to not sell, and then buy more stock before selling, which isn't allowed per the description rules.

    • @dj1984x
      @dj1984x Před 8 měsíci +1

      Yes, I agree. It looks to me like someone added a test case where the code he posted does not work, because as you stated line 21 is incorrect.

    • @jerrychan3055
      @jerrychan3055 Před 5 měsíci

      @@dj1984x so how could we modify the code?

    • @dumdum407
      @dumdum407 Před 3 měsíci

      @@jerrychan3055 you add this line to the buy if check: cooldown := dfs(i+1, 0) and this line to the sell if check. cooldown := dfs(i+1, 1) , In my solution, 0 == buying, selling == 1. The point is the cooldown dfs is different for buying and selling state

  • @tanson86
    @tanson86 Před rokem +1

    @Neetcode, Thanks for the simple explanation. Pasting the exact solution in java, just in case someone is looking for it.
    public int maxProfit(int[] prices) {
    return maxProfit(prices,0,true,new HashMap());
    }
    public int maxProfit(int[] prices,int i,boolean buying,Map map){
    if(i>=prices.length)
    return 0;
    if(map.containsKey(i+"-"+buying))
    return map.get(i+"-"+buying);
    if(buying){
    int buy = maxProfit(prices,i+1,!buying,map)-prices[i];
    int cd = maxProfit(prices,i+1,buying,map);
    map.put(i+"-"+buying, Math.max(buy,cd));
    }else{
    int sell = maxProfit(prices,i+2,!buying,map)+prices[i];
    int cd = maxProfit(prices,i+1,buying,map);
    map.put(i+"-"+buying, Math.max(sell,cd));
    }
    return map.get(i+"-"+buying);
    }

  • @dawarepramod9816
    @dawarepramod9816 Před 2 lety

    i dont understand the caching ....
    we are going to save the dp[i,buying] but i,buying can be same for the multiple positions like if
    our 1st example suggest that
    for: buy->sell->cooldown->buy->sell
    dp[4,sell]=+3,
    but for : cooldown ->cooldown->cooldown-> buy->sell
    it will again have dp[4,sell]=+2
    same dp position have different values??
    how is the caching working here??
    can anyone explain and help me ...????

  • @danishpasricha4121
    @danishpasricha4121 Před 2 lety

    great explanation

  • @JeiShian
    @JeiShian Před 9 měsíci +2

    "I'm going to make this problem look like a joke today, not because I'm smart, but only because I know how to draw a picture" My man went from 🤓to😎real quick

  • @dankquan743
    @dankquan743 Před 6 měsíci

    dfs with cache is much slower than the optimal solution. would love to see a series where you go back over these old videos and revise the solution

  • @Hangglide
    @Hangglide Před 2 lety

    Thanks for your great video! It would be better if you call "buying" state "buyingOrCooldown" and call "sell" state "sellOrColldown".

  • @mdjabirhossain173
    @mdjabirhossain173 Před 11 měsíci

    Why is it included in 2d dp problems in neetcode?

  • @davidlee588
    @davidlee588 Před rokem

    The base case in dfs is so hard to come up with, esp the second base case, almost impossible for me.

  • @selvamanigovindaraj4643
    @selvamanigovindaraj4643 Před 5 měsíci

    Its very helpful

  • @kuancs1
    @kuancs1 Před 2 měsíci +1

    I know im late but can I have an iterative solution from any of y’all?

  • @saihajgulati236
    @saihajgulati236 Před rokem

    the use of the word cooldown confused me a lot, but for anyone reading this, he uses it to refer a day when you CHOOSE to not do anything, while the problem uses it to refer to the day after you sell when you are FORCED to not do anything, which in his code is handled by the i+2 in the else statement.

  • @user-ce6zj1dt4s
    @user-ce6zj1dt4s Před 17 dny

    can u please do best time to buy and sell stock iv? cant find good explanation video for that one

  • @nikhildinesan5259
    @nikhildinesan5259 Před 2 lety

    Thnxx man...

  • @YeetYeetYe
    @YeetYeetYe Před 2 lety

    Why do we have a cooldown state for buying? I thought cooldown only applies after we sell? Is the cooldown here more like a "skip buying or selling this stock" ?

    • @chef8776
      @chef8776 Před 2 lety +1

      Once you have bought a share you can either Sell it or you not sell it. Not selling can be thought of as Cooldown where you are not involved in any transaction. Eitherway of thinking will result in unchanged profit.

    • @geekydanish5990
      @geekydanish5990 Před 2 lety +1

      cooldown is choice not an enforced decision in case when we buy

  • @andrepinto7895
    @andrepinto7895 Před 2 lety +1

    There is also a DP solution for this problem.

  • @jerrykuo8736
    @jerrykuo8736 Před 2 lety

    You should add a donate button! Every time I get a question that you have a video on, I will donate 5 bucks!

  • @pamp3657
    @pamp3657 Před 10 měsíci

    very good video

  • @sohaibpanwala5893
    @sohaibpanwala5893 Před 2 lety +3

    I'm a little embarassed, i didn't understand the coding solution. Don't you have to put a loop on the "i" and how can you call a function within it like def dfs(i, buying): and then buy = dfs(i + 1, not buying) in the function. I feel like there's a lot of background theory and code that i don't know yet.

  • @agnishwarbagchi4935
    @agnishwarbagchi4935 Před rokem

    The way you wrote buy with red and sell with green reminded me of crypto.. Great solution!! Keep it up.

  • @tjsm4455
    @tjsm4455 Před 2 měsíci

    I have already implemented the top-down(memoization) method and then wasted 4 hours in thinking for a tabulation method. I came here for tabulation method, why didn't he implemented it in tabulation method?

  • @programmingrush
    @programmingrush Před 2 lety +4

    I don't think DFS was needed in this case. It's making it more complicated. But anyways I follow your tutorials for the explanation which are amazing.

    • @nataliasmith6721
      @nataliasmith6721 Před 2 lety

      i agree

    • @wij8044
      @wij8044 Před 9 měsíci

      He explained the optimal solution, which requires dp since the complexity of recursive solution is 2^n. The use case of dp in general is to reuse existing solutions to significantly reduce time complexity, in this case reducing time complexity to O(n) since each node in memory is computed exactly once.

  • @sidazhong2019
    @sidazhong2019 Před 10 měsíci

    Damn it I almost got this one, I missed i+2 for sell. I still think it is i+1.

  • @jeffpeng1118
    @jeffpeng1118 Před 2 lety

    what would be the space complexity for this?

  • @qingyangsun434
    @qingyangsun434 Před 2 lety +3

    13:30 I still don't get it why sell = dfs(i+2, not buying) + price but not dfs(i+2, buying) + price, since after the cooldown, it's allowed to buy again right?

    • @happymind6908
      @happymind6908 Před 2 lety +2

      because "buying" is in false state and you want to make it "true" for buying, so "not buying(false)" will make it true

    • @qingyangsun434
      @qingyangsun434 Před 2 lety

      @@happymind6908 Thank you so much!

    • @ziyangji9485
      @ziyangji9485 Před rokem

      @@happymind6908 but dfs(i + 1, not buying) will also be ''true" for buying right? but we cannot buy again right? i don't get why both buy and sell go with ''not buying"

  • @techno-tronics4946
    @techno-tronics4946 Před 2 lety

    memo = {}
    def buy_sell_cooldown(prices, buy, i=0, profit=0):
    if i >= len(prices):
    return profit
    key = (i, buy)
    if key in memo:
    return memo[key]
    cooldown = buy_sell_cooldown(prices, buy, i+1, profit)
    if buy:
    bought = buy_sell_cooldown(prices, False, i+1, profit - prices[i])
    memo[key] = max(bought, cooldown)
    else:
    sell = buy_sell_cooldown(prices, True, i+2, profit + prices[i])
    memo[key] = max(sell, cooldown)
    return memo[key]
    Why is this not working? Recursion without memo is giving correct output but as soon as I introduce memo it messes the output up.

  • @alanjamey2777
    @alanjamey2777 Před 2 lety

    Hello can you tell me what ide you use??

    • @NeetCode
      @NeetCode  Před 2 lety

      I use the leetcode ide with the theme changed to 'monokai'

  • @pikachuryan7393
    @pikachuryan7393 Před 11 měsíci

    good website and good explanation, but not-ideal naming, took me forever to figure out; should've just asked GPT to write a dfs memo version for me.
    also I would think learning only-recursion solution is dangerous for anyone who want a good understanding. think for more.

  • @elachichai
    @elachichai Před 2 lety

    prices : List[int]) -> int:
    What semantic is this in Py?

    • @NeetCode
      @NeetCode  Před 2 lety +1

      Just type hints I think, they are not enforced tho

  • @lightlysal
    @lightlysal Před 10 měsíci

    I managed to solve this problem with just a 1-D DP memo. However, it seems to run much slower than your solution. Could someone explain the differences and why this is?
    Code:
    class Solution:
    def maxProfit(self, prices: List[int]) -> int:

    memo = [None for _ in range(len(prices))]

    def dp(i): # func assumes we are ready to buy!
    if i >= len(prices):
    return 0
    if memo[i] is not None:
    return memo[i]

    maxProfit = dp(i + 1) # represents not buying
    for j in range(i + 1, len(prices)): # j is a location we can sell at
    maxProfit = max(
    maxProfit,
    prices[j] - prices[i] + dp(j + 2) # j + 2 is a location we can think abt buying again
    )
    memo[i] = maxProfit
    return maxProfit

    return dp(0)

    • @mattmendez8860
      @mattmendez8860 Před 6 měsíci

      Your time cmoplexity is O(n^2) because you're iterating over the range while inside the `dp` function you've written! It's technically more like O(n * n / 2) but still exponential

    • @lightlysal
      @lightlysal Před 6 měsíci

      @@mattmendez8860 I see, thank you!

  • @MrLeyt1125
    @MrLeyt1125 Před 2 měsíci

    Where is Buy or sell III video? We miss it

  • @tranminhquang4541
    @tranminhquang4541 Před 6 měsíci

    This is an insanely hard question imo . Shouldnt give it a "medium" at all!

  • @sirrus3009
    @sirrus3009 Před 8 měsíci

    I dont know if I you could ever come up with this solution on my own

  • @jakubucinski
    @jakubucinski Před 21 dnem

    Simpler solution :
    # dp[i][j] -> max profit with stock bought on i and sold on j
    # dp[i][j] -> prices[j] - prices[i] + max profits until i - 2
    class Solution:
    def maxProfit(self, prices: List[int]) -> int:
    if len(prices) < 2:
    return 0
    maxes = [0] * len(prices)
    for i in range(len(prices)):
    for j in range(i + 1, len(prices)):
    adder = 0
    if i >=2:
    adder = maxes[i-2]
    maxes[j] = max(maxes[j], prices[j] - prices[i] + adder, maxes[j-1])
    return maxes[-1]
    Space complexity : O(n)
    Time complexity: O(n^2)

  • @brokecoder
    @brokecoder Před 11 měsíci

    I don't get why the cooldown for selling is not `cooldown = dfs(i+2,buying)'

    • @themagickalmagickman
      @themagickalmagickman Před 11 měsíci +1

      cooldown could better be called 'do nothing' because thats what is really happening. The actual cooldown after selling is skipped over because there is no point in calculating (thats why we do i+2 when selling, we jump over the index because we would have just skipped it anyways). If you look at the decision tree, there is only 1 option after selling and that is to skip the next position, so why not just jump over it?
      Basically, we arent forced to sell, so we need to choose to either sell at this position or do nothing at this position. Thats why cooldown for selling is i+1, think of it as 'do nothing' instead.

  • @selva279
    @selva279 Před 2 lety

    Not all heroes wear a Cape...thanks a lot

  • @creatorsresource8027
    @creatorsresource8027 Před 2 lety

    This is top-down DP right?

  • @habalgarmin
    @habalgarmin Před 11 měsíci

    my js solution:
    var maxProfit = function (prices) {
    const states = ['B', 'S', 'C'];
    const memo = new Map();
    function backtrack(step, index) {
    if (index === prices.length) return 0;
    const currState = states[step % 3];
    const k = `${index}-${currState}`;
    if (memo.has(k)) return memo.get(k);
    let res = 0;
    for (let i = index; i < prices.length; i++) {
    let price = prices[i];
    if (currState === 'B') {
    price *= -1;
    }
    if (currState === 'C') {
    price = 0;
    }
    const btr = backtrack(step + 1, i + 1) + price;
    memo.set(k, Math.max(memo.get(k) || 0, btr))
    res = Math.max(res, btr);
    }
    return res;
    }

    return backtrack(0, 0);
    };

  • @utkarshbhatnagar9178
    @utkarshbhatnagar9178 Před 2 lety +1

    there is also a O(1) space solution can you please explain it (like a follow up on this video)...

  • @raiyanahmed3534
    @raiyanahmed3534 Před 2 lety

    "I will make this question a joke today, just cause I can draw a picture" - Neetcode

  • @jerrychan3055
    @jerrychan3055 Před 5 měsíci +1

    Will not pass all the test cases as of now, one failed case is [2,1,2,1,0,1,2] and max profit should be 3.
    Instead, we can consider has stock or not:
    def maxProfit(self, prices: List[int]) -> int:
    n = len(prices)
    dp = {}
    def dfs(i, has_stock):
    if i >= n: return 0
    if (i, has_stock) in dp: return dp[(i, has_stock)]
    if not has_stock:
    buy = dfs(i + 1, True) - prices[i]
    cooldown = dfs(i + 1, False)
    dp[(i, has_stock)] = max(buy, cooldown)
    else:
    sell = dfs(i + 2, False) + prices[i]
    cooldown = dfs(i + 1, True)
    dp[(i, has_stock)] = max(sell, cooldown)
    return dp[(i, has_stock)]
    return dfs(0, False)

    • @ibr0303
      @ibr0303 Před 21 dnem

      @jerrychan3055 Can you please explain why the Neetcode solution doesn't work for this test case and yours does?

  • @ashutoshranaiiitdharwad8143

    giving TLE in c++ with same code

  • @Aashuthosh
    @Aashuthosh Před rokem

    Me who shorts in the stock market....WHY CAN'T I SELL BEFORE BUYING!!!

  • @true_human_007
    @true_human_007 Před 2 lety

    THIS DOES NOT WORK FOR [1,2,4]

  • @Tensor08
    @Tensor08 Před 2 lety +1

    You put dp, caching ,dfs, recursion into one and make a blend out of it after drewing it, not much efficient but still insanely genius man!!!

  • @mohamedmoselhy
    @mohamedmoselhy Před 2 lety +2

    Neet: I came up with a genius solution and here is how it works
    Parents 15:02: Why not 100% faster?

  • @jesseli7086
    @jesseli7086 Před 2 lety

    fast than 35.40% is pretty efficient ? why don't you turn the DFS into 3D-finite state machine to reduce the time and space cost ?

  • @hualiang2182
    @hualiang2182 Před 2 lety

    14:56, can initial buying state also be false? e.g. return Math.max(dfs(0, true), dfs(0, false))

    • @ZVEKOfficial
      @ZVEKOfficial Před 2 lety +2

      No, if you set it to false that means you would be selling on the 0th day, which is not possible since you don't own any stock on the 0th day

  • @manibhushankumarsingh5196
    @manibhushankumarsingh5196 Před měsícem

    I had solve this problem only after seeing your diagram.