二分解法(精确边界)
假定[D天内送完所有包裹的最低运力]为
a
n
s
ans
ans,那么在以
a
n
s
ans
ans为分割点的数轴上具有[二段性]:
即我们可以通过[二分]来找到恰好满足D天内运送完所有包裹的分割点
a
n
s
ans
ans
接下来我们要确定二分的范围,由于不存在包裹拆分的情况,考虑如下两种边界情况:
因此我们可以确定二分的范围为 [ m a x , s u m ] [max,sum] [max,sum]
class Solution:
def shipWithinDays(self, weights: List[int], D: int) -> int:
max_m,sum_m = max(weights),sum(weights)
l,r = max(max_m,sum_m//D),sum_m
while l<r:
mid = (l+r)>>1
if self.check(weights,mid,D):
r=mid
else:
l=mid+1
return r
def check(self, ws, t, d):
n = len(ws)
i = cnt = 1
total = ws[0]
while i<n:
while i<n and total + ws[i] <=t:
total += ws[i]
i +=1
total =0
cnt +=1
return cnt -1 <= d
时间复杂度:
O
(
n
l
o
g
(
∑
w
s
[
i
]
)
)
)
O(nlog(∑ ws[i])))
O(nlog(∑ws[i]))),check函数复杂度为
O
(
n
)
O(n)
O(n)
空间复杂度:
O
(
1
)
O(1)
O(1)