1 Star 0 Fork 0

MetaverseMobile/leetcode

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
322_零钱兑换.cpp 794 Bytes
一键复制 编辑 原始数据 按行查看 历史
TieNan2019 提交于 2020-11-01 22:17 . Create 322_零钱兑换.cpp
class Solution {
map<int, int> rec;
public:
int iterator(const vector<int> & coins, int amount)
{
vector<int> rec(amount + 1, amount + 1);
rec[0] = 0;
for (int i = 1; i <= amount; i++) {
for (int coin : coins) {
if (i - coin < 0)
continue;
int oneTry = rec[i-coin] + 1;
rec[i] = oneTry < rec[i] ? oneTry : rec[i];
}
}
return rec[amount] != amount + 1 ? rec[amount] : -1;
}
int coinChange(vector<int>& coins, int amount) {
return iterator(coins, amount);
}
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/MetaverseMobile/leetcode.git
[email protected]:MetaverseMobile/leetcode.git
MetaverseMobile
leetcode
leetcode
main

搜索帮助