Codility经典算法题之二十四:MaxSliceSum

Task description:

A non-empty array A consisting of N integers is given. A pair of integers (P, Q), such that 0 ≤ P ≤ Q < N, is called a slice of array A. The sum of a slice (P, Q) is the total of A[P] + A[P+1] + ... + A[Q].

Write a function:

class Solution { public int solution(int[] A); }

that, given an array A consisting of N integers, returns the maximum sum of any slice of A.

For example, given array A such that:

A[0] = 3 A[1] = 2 A[2] = -6 A[3] = 4 A[4] = 0

the function should return 5 because:

  • (3, 4) is a slice of A that has sum 4,
  • (2, 2) is a slice of A that has sum −6,
  • (0, 1) is a slice of A that has sum 5,
  • no other slice of A has sum greater than (0, 1).

Assume that:

  • N is an integer within the range [1..1,000,000];
  • each element of array A is an integer within the range [−1,000,000..1,000,000];
  • the result will be an integer within the range [−2,147,483,648..2,147,483,647].

Complexity:

  • expected worst-case time complexity is O(N);
  • expected worst-case space complexity is O(N), beyond input storage (not counting the storage required for input arguments).

Solution:

找出一个列表中和最大的切片

下面是结果100%的:

def solution(p):#[3,2,-6,4,0]
    lenp = len(p)
    res = p[0]
    last = res
    for i in range(1,lenp):
        last = max(p[i],p[i]+last)
        if(last>res):
            res = last

    return res

但是我个人实在是理解不了啊。。。。我写的是下面的,正确率25%:

def solution(p):#[3,2,-6,4,0]
    lenp = len(p)
    d = {}
    for i in range(lenp-1):#i = 0
        slicesum = 0
        l = []
        for j in range(i+1,lenp+1): #j = 1
            slicesum = sum(p[i:j])
            l.append(slicesum)
        d[i] = max(l)
    return max(d.values())

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值