mirror of
https://gitlab.com/mfocko/LeetCode.git
synced 2024-11-09 15:59:06 +01:00
go: add «1052. Grumpy Bookstore Owner»
Signed-off-by: Matej Focko <me@mfocko.xyz>
This commit is contained in:
parent
3ca391ca27
commit
1a95a0e633
1 changed files with 29 additions and 0 deletions
29
go/grumpy-bookstore-owner.go
Normal file
29
go/grumpy-bookstore-owner.go
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
package main
|
||||||
|
|
||||||
|
func maxSatisfied(customers []int, grumpy []int, minutes int) int {
|
||||||
|
// count always satisfied customers
|
||||||
|
satisfied := 0
|
||||||
|
for i, count := range customers {
|
||||||
|
satisfied += count * (1 - grumpy[i])
|
||||||
|
}
|
||||||
|
|
||||||
|
// get the initial run
|
||||||
|
unsatisfied := 0
|
||||||
|
for i := 0; i < minutes; i++ {
|
||||||
|
unsatisfied += customers[i] * grumpy[i]
|
||||||
|
}
|
||||||
|
|
||||||
|
maxCoverage := unsatisfied
|
||||||
|
for i := minutes; i < len(customers); i++ {
|
||||||
|
// remove from the start
|
||||||
|
unsatisfied -= customers[i-minutes] * grumpy[i-minutes]
|
||||||
|
|
||||||
|
// add from the end
|
||||||
|
unsatisfied += customers[i] * grumpy[i]
|
||||||
|
|
||||||
|
// update max coverage
|
||||||
|
maxCoverage = max(maxCoverage, unsatisfied)
|
||||||
|
}
|
||||||
|
|
||||||
|
return maxCoverage + satisfied
|
||||||
|
}
|
Loading…
Reference in a new issue