用LUA(和C++)刷PAT (Advanced Level) ——1068 Find More Coins

该博客主要探讨了一个使用C++编写的找零问题解决方案。通过动态规划的方法,程序接收硬币种类数量N和总金额pay,寻找可能的找零组合。程序首先对硬币进行排序,然后递归地尝试所有可能的硬币组合,返回找到的解决方案或表示无解的状态。如果找到解决方案,输出组合中硬币的顺序。
摘要由CSDN通过智能技术生成
#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";
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值