-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy path1052-grumpy-bookstore-owner.js
46 lines (43 loc) · 1.57 KB
/
1052-grumpy-bookstore-owner.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/**
* 1052. Grumpy Bookstore Owner
* https://leetcode.com/problems/grumpy-bookstore-owner/
* Difficulty: Medium
*
* There is a bookstore owner that has a store open for n minutes. You are given an integer array
* customers of length n where customers[i] is the number of the customers that enter the store
* at the start of the ith minute and all those customers leave after the end of that minute.
*
* During certain minutes, the bookstore owner is grumpy. You are given a binary array grumpy
* where grumpy[i] is 1 if the bookstore owner is grumpy during the ith minute, and is 0 otherwise.
*
* When the bookstore owner is grumpy, the customers entering during that minute are not satisfied.
* Otherwise, they are satisfied.
*
* The bookstore owner knows a secret technique to remain not grumpy for minutes consecutive
* minutes, but this technique can only be used once.
*
* Return the maximum number of customers that can be satisfied throughout the day.
*/
/**
* @param {number[]} customers
* @param {number[]} grumpy
* @param {number} minutes
* @return {number}
*/
var maxSatisfied = function(customers, grumpy, minutes) {
let baseSatisfied = 0;
let windowGain = 0;
let maxGain = 0;
for (let i = 0; i < customers.length; i++) {
if (grumpy[i] === 0) {
baseSatisfied += customers[i];
}
if (i < minutes) {
windowGain += grumpy[i] * customers[i];
} else {
windowGain += grumpy[i] * customers[i] - grumpy[i - minutes] * customers[i - minutes];
}
maxGain = Math.max(maxGain, windowGain);
}
return baseSatisfied + maxGain;
};