#include <iostream>
#include <vector>
#include <algorithm>
#include <string>
using namespace std;
string result = "";
int N, pay;
bool info[101][100000];
int getCoin(int index, vector<int> coins){
if (pay < coins[index])
return -1;
if (info[pay][index])
return -1;
pay -= coins[index];
if (pay == 0)
{
result = to_string(coins[index]);
return 1;
}
for(int i = index + 1; i < N ; i++){
int getCoinResult = getCoin(i, coins);
if (getCoinResult == 1)
{
result = to_string(coins[index]) + " " + result;
return 1;
}
if (getCoinResult == -1)
break;
}
pay += coins[index];
info[pay][index] = true;
return 0;
}
int main()
{
cin>>N>>pay;
vector<int> coins(N);
for(int i = 0 ; i < N ; i++){
scanf("%d", &(coins[i]));
}
sort(coins.begin(), coins.end());
for(int i = 0 ; i < N ; i++){
if (getCoin(i, coins) == 1){
cout<<result;
return 0;
}
}
cout<<"No Solution";
}
用LUA(和C++)刷PAT (Advanced Level) ——1068 Find More Coins
最新推荐文章于 2024-11-15 21:44:47 发布
该博客主要探讨了一个使用C++编写的找零问题解决方案。通过动态规划的方法,程序接收硬币种类数量N和总金额pay,寻找可能的找零组合。程序首先对硬币进行排序,然后递归地尝试所有可能的硬币组合,返回找到的解决方案或表示无解的状态。如果找到解决方案,输出组合中硬币的顺序。
摘要由CSDN通过智能技术生成