Class Solution
- java.lang.Object
-
- g2201_2300.s2218_maximum_value_of_k_coins_from_piles.Solution
-
public class Solution extends Object
2218 - Maximum Value of K Coins From Piles.Hard
There are
npiles of coins on a table. Each pile consists of a positive number of coins of assorted denominations.In one move, you can choose any coin on top of any pile, remove it, and add it to your wallet.
Given a list
piles, wherepiles[i]is a list of integers denoting the composition of theithpile from top to bottom , and a positive integerk, return the maximum total value of coins you can have in your wallet if you choose exactlykcoins optimally.Example 1:

Input: piles = [[1,100,3],[7,8,9]], k = 2
Output: 101
Explanation: The above diagram shows the different ways we can choose k coins.
The maximum total we can obtain is 101.
Example 2:
Input: piles = [[100],[100],[100],[100],[100],[100],[1,1,1,1,1,1,700]], k = 7
Output: 706
Explanation: The maximum total can be obtained if we choose all coins from the last pile.
Constraints:
n == piles.length1 <= n <= 10001 <= piles[i][j] <= 1051 <= k <= sum(piles[i].length) <= 2000
-
-
Constructor Summary
Constructors Constructor Description Solution()
-