forked from shuboc/LeetCode-2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
largest-sum-of-averages.py
56 lines (51 loc) · 1.65 KB
/
largest-sum-of-averages.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# Time: O(k * n^2)
# Space: O(n)
# We partition a row of numbers A into at most K adjacent (non-empty) groups,
# then our score is the sum of the average of each group. What is the largest
# score we can achieve?
#
# Note that our partition must use every number in A, and that scores are not
# necessarily integers.
#
# Example:
# Input:
# A = [9,1,2,3,9]
# K = 3
# Output: 20
# Explanation:
# The best choice is to partition A into [9], [1, 2, 3], [9]. The answer is
# 39 + (1 + 2 + 3) / 3 + 9 = 20.
# We could have also partitioned A into [9, 1], [2], [3, 9], for example.
# That partition would lead to a score of 5 + 2 + 6 = 13, which is worse.
#
# Note:
# - 1 <= A.length <= 100.
# - 1 <= A[i] <= 10000.
# - 1 <= K <= A.length.
# Answers within 10^-6 of the correct answer will be accepted as correct.
try:
xrange # Python 2
except NameError:
xrange = range # Python 3
class Solution(object):
def largestSumOfAverages(self, A, K):
"""
:type A: List[int]
:type K: int
:rtype: float
"""
accum_sum = [A[0]]
for i in xrange(1, len(A)):
accum_sum.append(A[i]+accum_sum[-1])
dp = [[0]*len(A) for _ in xrange(2)]
for k in xrange(1, K+1):
for i in xrange(k-1, len(A)):
if k == 1:
dp[k % 2][i] = float(accum_sum[i])/(i+1)
else:
for j in xrange(k-2, i):
dp[k % 2][i] = \
max(dp[k % 2][i],
dp[(k-1) % 2][j] +
float(accum_sum[i]-accum_sum[j])/(i-j))
return dp[K % 2][-1]