Longest Increasing Subsequence NlogN | Leetcode

แชร์
ฝัง
  • เผยแพร่เมื่อ 23 พ.ย. 2024

ความคิดเห็น • 6

  • @heybeachMIN
    @heybeachMIN 24 วันที่ผ่านมา

    dmn, after your explanation it was so easy to understand, thanks a lot!!! :)

  • @liveurlife3166
    @liveurlife3166 24 วันที่ผ่านมา

    Understood sir.

  • @apbh
    @apbh 3 หลายเดือนก่อน +1

    Thank you!

  • @pratyushshrivastav8530
    @pratyushshrivastav8530 6 หลายเดือนก่อน +1

    We can find out the length of the LIS but the elements involved in the LIS might not always be true with this solution. for input { 2,4,6,8,1} the LIS will be {2,4,6,8} but the nlogn solution will give us the LIS as {1,4,6,8} which is not correct. The nlogn solution can only be used when we require only the length of the LIS and not the elements involved in it.

    • @techdose4u
      @techdose4u  6 หลายเดือนก่อน

      Yes correct. Its only for finding length of LIS.

  • @Divya-qt1cf
    @Divya-qt1cf 5 หลายเดือนก่อน +1

    Wow 🎉