Skip to content

Latest commit

 

History

History
73 lines (29 loc) · 1.14 KB

File metadata and controls

73 lines (29 loc) · 1.14 KB

中文文档

Description

Given an integer array A, you partition the array into (contiguous) subarrays of length at most K.  After partitioning, each subarray has their values changed to become the maximum value of that subarray.

Return the largest sum of the given array after partitioning.

 

Example 1:

Input: A = [1,15,7,9,2,5,10], K = 3

Output: 84

Explanation: A becomes [15,15,15,9,10,10,10]

 

Note:

    <li><code>1 &lt;= K &lt;= A.length&nbsp;&lt;= 500</code></li>
    
    <li><code>0 &lt;= A[i] &lt;= 10^6</code></li>
    

Solutions

Python3

Java

...