Problem Description
There are n piles of stones arranged in a row. The ith pile has stones[i] stones. A move consists of merging exactly k consecutive piles into one pile, and the cost of this move is equal to the total number of stones in these k piles. Return the minimum cost to merge all piles of stones into one pile. If it is impossible, return -1.
Key Insights
- Merging k consecutive piles reduces the number of piles by k-1.
- To merge all piles into one, the final number of piles must be exactly 1, which means that (n - 1) must be divisible by (k - 1).
- The problem can be efficiently solved using dynamic programming combined with prefix sums to store cumulative stone counts.
- The cost of merging piles needs to be minimized through strategic choices of which piles to merge.
Space and Time Complexity
Time Complexity: O(n^3)
Space Complexity: O(n^2)
Solution
The solution involves using a dynamic programming approach where we maintain a DP table dp[i][j]
that represents the minimum cost to merge the stones from the i-th pile to the j-th pile. The prefix sum array is used to calculate the cost of merging any subarray efficiently. The algorithm iterates over all possible lengths of the subarrays and checks for valid merges, updating the DP table accordingly.