2024.4.23每日一题

27 阅读2分钟

LeetCode

爱生气的书店老板

题目链接:1052. 爱生气的书店老板 - 力扣(LeetCode)

题目描述

有一个书店老板,他的书店开了 n 分钟。每分钟都有一些顾客进入这家商店。给定一个长度为 n 的整数数组 customers ,其中 customers[i] 是在第 i 分钟开始时进入商店的顾客数量,所有这些顾客在第 i 分钟结束后离开。

在某些时候,书店老板会生气。 如果书店老板在第 i 分钟生气,那么 grumpy[i] = 1,否则 grumpy[i] = 0

当书店老板生气时,那一分钟的顾客就会不满意,若老板不生气则顾客是满意的。

书店老板知道一个秘密技巧,能抑制自己的情绪,可以让自己连续 minutes 分钟不生气,但却只能使用一次。

请你返回 这一天营业下来,最多有多少客户能够感到满意

示例 1:

输入:customers = [1,0,1,2,1,1,7,5], grumpy = [0,1,0,1,0,1,0,1], minutes = 3
输出:16
解释:书店老板在最后 3 分钟保持冷静。
感到满意的最大客户数量 = 1 + 1 + 1 + 1 + 7 + 5 = 16.

示例 2:

输入:customers = [1], grumpy = [0], minutes = 1
输出:1

提示:

  • n == customers.length == grumpy.length
  • 1 <= minutes <= n <= 2 * 104
  • 0 <= customers[i] <= 1000
  • grumpy[i] == 0 or 1

思路

  1. 先将原本就满意的顾客数加起来,同时将对应的customers[i] 变为 0
  2. 之后利用滑动窗口,寻找固定子数组的总和最大的值。

代码

C++

class Solution {
public:
    int maxSatisfied(vector<int>& customers, vector<int>& grumpy, int minutes) {
        int n = customers.size(), ans = 0;
        for (int i = 0; i < n; i++) {
            if (grumpy[i] == 0) {
                ans += customers[i];
                customers[i] = 0;
            }
        }
​
        int cur = 0, s_max = 0;
        for (int i = 0; i < n; i++) {
            cur += customers[i];
            if (i >= minutes)
                cur -= customers[i - minutes];
            s_max = max(s_max, cur);
        }
        return ans + s_max;
    }
};

Java

class Solution {
    public int maxSatisfied(int[] customers, int[] grumpy, int minutes) {
        int n = customers.length, ans = 0;
        for(int i = 0; i < n; i++){
            if(grumpy[i] == 0){
                ans += customers[i];
                customers[i] = 0;
            }
        }
​
        int cur = 0, max = 0;
        for(int i = 0; i < n; i++){
            cur += customers[i];
            if(i >= minutes) cur -= customers[i - minutes];
            max = Math.max(max,cur);
        }
        return ans + max;
    }
}