這篇文章給大家分享的是有關(guān)leetcode中如何解決愛(ài)生氣書(shū)店老板問(wèn)題的內(nèi)容。小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過(guò)來(lái)看看吧。
沙坡頭ssl適用于網(wǎng)站、小程序/APP、API接口等需要進(jìn)行數(shù)據(jù)傳輸應(yīng)用場(chǎng)景,ssl證書(shū)未來(lái)市場(chǎng)廣闊!成為成都創(chuàng)新互聯(lián)的ssl證書(shū)銷(xiāo)售渠道,可以享受市場(chǎng)價(jià)格4-6折優(yōu)惠!如果有意向歡迎電話聯(lián)系或者加微信:028-86922220(備注:SSL證書(shū)合作)期待與您的合作!
一、題目?jī)?nèi)容
書(shū)店老板有一家店打算試營(yíng)業(yè) customers.length 分鐘。每分鐘都有一些顧客(customers[i])會(huì)進(jìn)入書(shū)店,所有這些顧客都會(huì)在那一分鐘結(jié)束后離開(kāi)。
在某些時(shí)候,書(shū)店老板會(huì)生氣。 如果書(shū)店老板在第 i 分鐘生氣,那么 grumpy[i] = 1,否則 grumpy[i] = 0。 當(dāng)書(shū)店老板生氣時(shí),那一分鐘的顧客就會(huì)不滿意,不生氣則他們是滿意的。
書(shū)店老板知道一個(gè)秘密技巧,能抑制自己的情緒,可以讓自己連續(xù) X 分鐘不生氣,但卻只能使用一次。
請(qǐng)你返回這一天營(yíng)業(yè)下來(lái),最多有多少客戶能夠感到滿意的數(shù)量。
示例:
輸入:customers = [1,0,1,2,1,1,7,5], grumpy = [0,1,0,1,0,1,0,1], X = 3
輸出:16
解釋?zhuān)?br/>書(shū)店老板在最后 3 分鐘保持冷靜。
感到滿意的最大客戶數(shù)量 = 1 + 1 + 1 + 1 + 7 + 5 = 16.
提示:
1 <= X <= customers.length == grumpy.length <= 20000
0 <= customers[i] <= 1000
0 <= grumpy[i] <= 1
滑動(dòng)窗口,沒(méi)啥說(shuō)的,先累加能獲得的所有滿意度,然后再計(jì)算滑動(dòng)窗口中能獲得的滿意度,每次需要記錄最大值,最后返回二者之和即可。
class Solution: def maxSatisfied(self, customers: list, grumpy: list, X: int) -> int: origin = 0 for i in range(len(customers)): if grumpy[i] == 0: origin += customers[i] # print(origin) windows = 0 for i in range(X): if grumpy[i] == 1: windows += customers[i] # print(windows) left = 0 right = X - 1 dynamic = windows while right < len(customers) - 1: if grumpy[left] == 1: dynamic -= customers[left] if grumpy[right + 1] == 1: dynamic += customers[right + 1] left += 1 right += 1 windows = max(windows, dynamic) return origin + windows if __name__ == '__main__': s = Solution() customers = [1, 0, 1, 2, 1, 1, 7, 5] grumpy = [0, 1, 0, 1, 0, 1, 0, 1] X = 3 ans = s.maxSatisfied(customers, grumpy, X) print(ans)
感謝各位的閱讀!關(guān)于“l(fā)eetcode中如何解決愛(ài)生氣書(shū)店老板問(wèn)題”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!