Smallest Sufficient Team - LeetCode 1125 - Python

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

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

  • @Alpha-Code
    @Alpha-Code  ปีที่แล้ว

    Small correction to time complexity it should actually be O(p^2 * 2^s) because of the bin() function which compares the 2 values we get for number of people. That will take p time to execute, and we have that in the dp method. However, since p is only 60 max, this doesn't add much time complexity.

    • @d_vang
      @d_vang ปีที่แล้ว

      okk thanks