LeetCode 1191. K-Concatenation Maximum Sum

231 篇文章 0 订阅

 

Given an integer array arr and an integer k, modify the array by repeating it k times.

For example, if arr = [1, 2] and k = 3 then the modified array will be [1, 2, 1, 2, 1, 2].

Return the maximum sub-array sum in the modified array. Note that the length of the sub-array can be 0 and its sum in that case is 0.

As the answer can be very large, return the answer modulo 10^9 + 7.

 

Example 1:

Input: arr = [1,2], k = 3
Output: 9

Example 2:

Input: arr = [1,-2,1], k = 5
Output: 2

Example 3:

Input: arr = [-1,-2], k = 7
Output: 0

 

Constraints:

  • 1 <= arr.length <= 10^5
  • 1 <= k <= 10^5
  • -10^4 <= arr[i] <= 10^4

------------------------------------------------

反应有些慢,如果3个拼接比2个拼接的结果大,说明中间一定用满了。。。

class Solution:
    def max_subarry(self,arr):
        res,pre = 0,0
        for num in arr:
            pre = pre+num if pre>0 else num
            res = max(pre,res)
        return res
        
    def kConcatenationMaxSum(self, arr: List[int], k: int) -> int:
        m1 = self.max_subarry(arr)
        mod = 10**9+7
        if (k == 1):
            return m1%mod
        m2 = self.max_subarry(arr*2)
        if (m1 == m2):
            return m1%mod
        total = sum(arr)
        if (total > 0):
            return (m2+total*(k-2))%mod
        else:
            return m2%mod
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值