【每日一题】LeetCode 2513. Minimize the Maximum of Two Arrays

แชร์
ฝัง
  • เผยแพร่เมื่อ 17 ม.ค. 2025

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

  • @pondyellow3286
    @pondyellow3286 2 ปีที่แล้ว

    Learned so much about binary search by value from your vids. Thanks!

  • @pondyellow3286
    @pondyellow3286 2 ปีที่แล้ว

    Can you explain why the BSBV template in your other video doesn't work here? How to choose using l or r as base for BSBV? Thank you so much for the excellent lecture! (I can read Chinese, just don't have Pinying input lol. XieXie!!)
    l, r = 1, max(ribbons)
    while l < r:
    mid = r - (r - l) // 2
    if is_ok(mid):
    l = mid
    else:
    r = mid - 1

    • @wisdompeak
      @wisdompeak  2 ปีที่แล้ว

      这个模板本身没有问题。但是你的is_OK(mid)是在这里是什么意思呢?