其他分享
首页 > 其他分享> > 1052. 爱生气的书店老板

1052. 爱生气的书店老板

作者:互联网

今天,书店老板有一家店打算试营业 customers.length 分钟。每分钟都有一些顾客(customers[i])会进入书店,所有这些顾客都会在那一分钟结束后离开。

在某些时候,书店老板会生气。 如果书店老板在第 i 分钟生气,那么 grumpy[i] = 1,否则 grumpy[i] = 0。 当书店老板生气时,那一分钟的顾客就会不满意,不生气则他们是满意的。

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

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

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/grumpy-bookstore-owner
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

class Solution {
    public int maxSatisfied(int[] customers, int[] grumpy, int minutes) {
        if (customers == null || customers.length == 0) {
            return 0;
        }

        int sum = 0;

        for (int i = 0; i < customers.length; ++i) {
            if (grumpy[i] == 0) {
                sum += customers[i];
            }
        }

        int windowMax = 0;
        int left = 0, cnt = 0;

        for (int i = 0; i < customers.length; ++i) {
            if (grumpy[i] == 1) {
                cnt += customers[i];
            }
            windowMax = Math.max(windowMax, cnt);
            if (i - left + 1 == minutes) {
                if (grumpy[left] == 1) {
                    cnt -= customers[left];
                }
                left++;
            }
        }

        return windowMax + sum;
    }
}

标签:1052,书店,int,customers,爱生气,cnt,grumpy,left
来源: https://www.cnblogs.com/tianyiya/p/15706566.html