LeetCode每日一题(2218. Maximum Value of K Coins From Piles)

从n个包含不同面值硬币的堆中选择,每次可以从任一堆顶部拿走一枚硬币并放入钱包。给定硬币堆piles和取硬币次数k,返回能获取的最大总价值。可以通过动态规划求解,考虑每种取硬币的策略,以最大化总价值。
摘要由CSDN通过智能技术生成

There are n piles 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, where piles[i] is a list of integers denoting the composition of the ith pile from top to bottom, and a positive integer k, return the maximum total value of coins you can have in your wallet if you choose exactly k coins 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.length
  • 1 <= n <= 1000
  • 1 <= piles[i][j] <= 105
  • 1 <= k <= sum(piles[i].length) <= 2000

假设 dp[i][k]是当我们取到 piles[i]时还剩下 k 次机会所能拿到的最大值, dp[i][k] = max(
sum(piles[i][…1]) + dp[i+1][k-1],
sum(piles[i][…2]) + dp[i+1][k-2],
sum(piles[i][…3]) + dp[i+1][k-3],

sum(piles[i][…n]) + dp[i+1][k-n])

这里要注意一点是当前 pile 我们可以不取硬币直接跳过



use std::collections::HashMap;

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值