Maximum Number of Points with Cost - Leetcode 1937 - Python

Поділитися
Вставка
  • Опубліковано 15 гру 2024

КОМЕНТАРІ • 79

  • @hardiksrivastava9174
    @hardiksrivastava9174 4 місяці тому +95

    at this point leetcode is testing my willpower rather than my coding knowledge

  • @chien-yucode992
    @chien-yucode992 4 місяці тому +38

    The idea for optimizing from O(m*n^2) to O(m*n) is so smart....

  • @ParodyCSEDept
    @ParodyCSEDept 4 місяці тому +18

    Memoization gave me TLE on 144th testcase and simple DP gave TLE on 153rd testcase. I was confident of solving this myself but this problem humbled me. The optimization is so smart!

  • @tuandino6990
    @tuandino6990 4 місяці тому +5

    At this point its not dynamic programming anymore, its double penetration

  • @deep.space.12
    @deep.space.12 4 місяці тому +2

    My intuition for the left/right optimization:
    Let's say the previous row is [A, B, C, D].
    We only consider elements from left-to-right for now.
    The maximum value for the first element in the current row is: max(A) == A
    The maximum value for the second element in the current row is: max(A - 1, B) == max(A- 1, B)
    The maximum value for the third element in the current row is: max(A - 2, B - 1, C) == max(max(A - 1, B) - 1, C)
    The maximum value for the forth element in the current row is: max(A - 3, B - 2, C - 1, D) == max(max(max(A - 1, B) - 1, C) - 1, D)
    So it's a rolling max(prev_max - 1, element_right_above).
    And similarly do right-to-left for the second half.

  • @lesterdelacruz5088
    @lesterdelacruz5088 2 місяці тому +1

    It's a bit of a stretch to call the solution DP. It's more of a clever precalculation. The features of the solution lacks the usual features of DP like exploring combinations. I get that is encoded in the precalculation hence why I think it shouldn't be tagged as dynamic programming.

  • @kalmyk
    @kalmyk 4 місяці тому +23

    small nitpick on 10:25 dp[2] is 7 not 8

  • @jackgordley
    @jackgordley 4 місяці тому +6

    This it tough with that double DP aspect to it, feels like a Hard problem IMO. Thanks for the awesome explanation as always man

  • @nptel1punith929
    @nptel1punith929 4 місяці тому +8

    this dp monster seems to have no bounds to its power😢😢

  • @Neuromancer_2k77
    @Neuromancer_2k77 4 місяці тому +8

    Everything up to left/right was quite intuitive. I understand what you did and why. I don't understand the intuition. That's the frustrating part.

  • @ashaynaik7540
    @ashaynaik7540 4 місяці тому +15

    we nesting dp now

  • @DNKF
    @DNKF 4 місяці тому +4

    10:22 Should be 1+max(6,4)=7

  • @AbdulWahab-jl4un
    @AbdulWahab-jl4un 4 місяці тому +2

    Genius solution as always😮

  • @JamesBond-mq7pd
    @JamesBond-mq7pd 4 місяці тому +1

    wow. didn't know that solution so simple! incredible!

  • @pratyushthakur8478
    @pratyushthakur8478 4 місяці тому +5

    took a two week break and came back to this never quitting lc again :( skill gapped

    • @leshius7230
      @leshius7230 4 місяці тому +10

      I've been doing leetcode and I still can't reason this shit.

    • @stoppls1709
      @stoppls1709 4 місяці тому

      ​@@leshius7230deadass, feels like i got hit with the men in black flash

  • @mohitmalhotra4276
    @mohitmalhotra4276 4 місяці тому +2

    This is the first video of neetcode where I am unable to understand what he is explaining

  • @gui-codes
    @gui-codes 4 місяці тому +12

    it would have been be good if you could share your thought process/intuition.

  • @oneplusgeek7510
    @oneplusgeek7510 4 місяці тому

    i knew it was a DP problem the second I read the problem and constraints but I really got humbled when Memoization failed, tried fixing it but did not work, came straight here, Thanks neetcode!

  • @venkataraman7962
    @venkataraman7962 3 місяці тому

    Damn, looked at various solutions, but yours is very easy to understand

  • @kapilkhandelwal48
    @kapilkhandelwal48 4 місяці тому +18

    Memoization solution gave me the tle is horryfying.

    • @069_Souvik
      @069_Souvik 4 місяці тому +1

      How much testcases u passed with memoization?
      I got TLE on 144th testcase

    • @AdityaSharma-eg4do
      @AdityaSharma-eg4do 4 місяці тому

      @@069_Souvik same

    • @expanse8846
      @expanse8846 4 місяці тому

      @@069_Souvik same

    • @deepakjain4481
      @deepakjain4481 4 місяці тому

      @@069_Souvik i got stuck in this too

    • @agarwalyashhh
      @agarwalyashhh 4 місяці тому

      @@069_Souvik 152

  • @vedanti2358
    @vedanti2358 4 місяці тому +3

    will solving enough dp problems help me come up with the left and right array intuitively? I was able to do the brute force dp but not thsi one

    • @VishalKumar-lw3yh
      @VishalKumar-lw3yh 4 місяці тому

      NO😑

    • @EduarteBDO
      @EduarteBDO 4 місяці тому +2

      Probably not, but now when you get to a similar problem you'll know how to solve and that's what matter. What we can get from this problem is the idea from left- right and that some problems have double nested dp

  • @MP-ny3ep
    @MP-ny3ep 4 місяці тому

    Beautiful explanation. Thank you

  • @kartikeyasingh5172
    @kartikeyasingh5172 3 місяці тому

    very smart technique

  • @doctor_cats
    @doctor_cats 4 місяці тому +1

    How do u come out with this? Is it try and error ? Or just experience , cause i would never would have think of computing it left and right.

  • @deshpanderamakrishna9862
    @deshpanderamakrishna9862 4 місяці тому

    Thanks for the consistent videos mate.!❤I appreciate your efforts

  • @v3updates649
    @v3updates649 4 місяці тому

    Thanks for this video. This will be my first time solving DP problem.

  • @tharunkumar5095
    @tharunkumar5095 4 місяці тому

    Thank you for such a great explanation. ❤
    I couldnt able to identify that this can be solved using dp 😢
    How to identity dp can be used to problems
    I used different approach (i think its greedy) but it was wrong, my solution is.. taking max val in a row and keeping track of max id and using this to find max val in next row and summing up.. got failed bcoz elements in a row are not always unique.

  • @rostislav_engineer
    @rostislav_engineer 4 місяці тому

    thank you for sharing this!

  • @business_central
    @business_central 4 місяці тому +1

    The fact I can't get such intuition on the spot makes me hopeless for interviews

    • @LifeZone-j3w
      @LifeZone-j3w 4 місяці тому +1

      do such people normally exist?

    • @business_central
      @business_central 4 місяці тому

      @@LifeZone-j3w well Neetcode is one 😅, and probably many more

  • @nandanbhowmick1825
    @nandanbhowmick1825 4 місяці тому

    Thanks, great explanation.

  • @devnull711
    @devnull711 4 місяці тому

    I am here just to hear the description read out :)

  • @sujitmourya8481
    @sujitmourya8481 4 місяці тому

    very nice explanation

  • @ahmedtremo
    @ahmedtremo 4 місяці тому

    you using a new keyboard or what, a lot of typos today :D, keep up the good work though!

  • @rjarora
    @rjarora 2 місяці тому

    Leetcode's difficulty algorithm is broken! No way this is a Medium and not a Hard.

  • @vietnguyenquoc4948
    @vietnguyenquoc4948 4 місяці тому

    For the life of me, I cant figure it out how to optimize the get max from previous row part. Thank you so much for the explaination.
    2 questions though:
    - At which point does the thought of 6:00 occurred to you that it is impossible? Did it come at you intuitively or you somehow proved it using quick maff? I too thought that it is impossible at first, but the thought of looping all cells in the prev rows to pick one was too "bruteforce" and I thought it would result in TLE, so I discarded that thoughts.
    - How would you know that looping each row twice (thrice to build the actual dp) would not result in TLE? I did come up with the thoughts of check max for each current_element but the thought of looping all the rows made me discarded that approach

  • @ctj01
    @ctj01 4 місяці тому

    this problem is not medium difficult, it is hard

  • @saikumaradapa3266
    @saikumaradapa3266 4 місяці тому +1

    looking for you

  • @Dineshkumar_dk
    @Dineshkumar_dk 4 місяці тому

    why you are add 1 with value at 2:10

    • @Sid37612
      @Sid37612 4 місяці тому

      Because the value at that cell is 1

  • @BHARATHREDDY1919
    @BHARATHREDDY1919 4 місяці тому

    can anyone explain me how left and right arrays work to give us the max value? I am unable to understand how its working.

    • @Elias_90
      @Elias_90 4 місяці тому

      I'm not sure if my take is correct, but here's how i understood it,
      left and right feels like a greedy solution more than a dp solution where you take the max between the previous and current utility (val - cost) where the current col has a cost of 0 and the relative cost is the dist from the current col, this is because you cant really reuse the calculations for any of the cols because each cols despite having the same utility have a relative cost

    • @BHARATHREDDY1919
      @BHARATHREDDY1919 4 місяці тому

      @@Elias_90 thanks bro

    • @deep.space.12
      @deep.space.12 4 місяці тому

      Let's say the previous row is [A, B, C, D].
      We only consider elements from left to right for now.
      The maximum value for the first element in the current row is: max(A) == A
      The maximum value for the second element in the current row is: max(A - 1, B) == max(A- 1, B)
      The maximum value for the third element in the current row is: max(A - 2, B - 1, C) == max(max(A - 1, B) - 1, C)
      The maximum value for the forth element in the current row is: max(A - 3, B - 2, C - 1, D) == max(max(max(A - 1, B) - 1, C) - 1, D)
      So it's rolling max(prev_max - 1, element right above).
      And similarly do right to left for the second half.

  • @manojvn2612
    @manojvn2612 4 місяці тому

    Can you say your intuition about it

  • @Ryurn-g9l
    @Ryurn-g9l 4 місяці тому +1

    why the hell would anyone ask this in an interview bruv😭

  • @AlexNikiporenko
    @AlexNikiporenko 4 місяці тому +2

    i figured out another approach using heaps, which is slower (2460ms), but still passed. Time complexity mlogm * n.
    class Solution:
    def maxPoints(self, points: List[List[int]]) -> int:
    height = len(points)
    width = len(points[0])
    ans = [[0] * width] + [[None] * width for _ in range(height)]
    for r in range(height):
    heap = [(-points[r][i] + ans[r][i], i) for i in range(width)]
    heapq.heapify(heap)
    while heap:
    n, i = heapq.heappop(heap)
    if ans[r+1][i] is None:
    ans[r+1][i] = n
    if i > 0 and ans[r+1][i-1] is None:
    heapq.heappush(heap, (n+1, i-1))
    if i < width -1 and ans[r+1][i+1] is None:
    heapq.heappush(heap, (n+1, i+1))
    return -min(ans[-1])

  • @tanishbansal1058
    @tanishbansal1058 4 місяці тому +7

    At this point i think i should just give up

    • @chuyi-crack6290
      @chuyi-crack6290 4 місяці тому +3

      keep grinding and it will be worth it

    • @EduarteBDO
      @EduarteBDO 4 місяці тому +2

      This kind of problems is the problems where if your mind don't randomly send a hint you just can't rationalize until a solution, but with enough practice, you can increase the chance of the mind sending a hint but it's always not 100%

  • @atulbhardwaj3881
    @atulbhardwaj3881 4 місяці тому

    isn't it like nqueens problem a pattern like that

  • @hasferrr
    @hasferrr 4 місяці тому

    🤯🤯

  • @arijaa.9315
    @arijaa.9315 4 місяці тому

    The video is all about here and that.hahaha

  • @ransh-sahu
    @ransh-sahu 4 місяці тому

    If i hadn't done dp can i solve

  • @thirumalaisriram8623
    @thirumalaisriram8623 4 місяці тому

    I am tired boss :(

  • @kylehurd2167
    @kylehurd2167 4 місяці тому

    I always feel like I am improving until I get a DP question... Is this really a medium? :(

    • @tuandino6990
      @tuandino6990 4 місяці тому

      Its ok, its a hard in disguised

    • @rjarora
      @rjarora 2 місяці тому

      Leetcode's difficulty algorithm is broken! No way this is a Medium and not a Hard.

  • @loncharnettcr7044
    @loncharnettcr7044 4 місяці тому

    what a problem.

  • @youneverknow7096
    @youneverknow7096 4 місяці тому +2

    Nah the explanation wasn't it, after the duplicates thingie came in