2024年华为OD机试真题-最多购买宝石数目 C/C++解法

使用暴力双层for循环遍历所有的可能性

#include <iostream>
#include <vector>
#include <list>

using namespace std;

// 最多购买宝石个数
static void HuaWei_OD_test19(void)
{
    int gems_cnt;
    cin >> gems_cnt;

    vector<int> gems_price_vec;
    int tmp;
    for (int i = 0; i < gems_cnt; i++)
    {
        cin >> tmp;
        gems_price_vec.push_back(tmp);
    }

    int has_money;
    cin >> has_money;

    list<int> gems_buy_cnt_list; // 不同采购方案所买到的宝石个数组成的链表
    for (int i = 0; i < gems_cnt; i++)
    {
        int cost = 0;
        for (int j = i; j < gems_cnt; j++)
        {
            if (cost < has_money)
            {
                // 如果再买一件就超支
                if ((cost + gems_price_vec[j]) >= has_money)
                {
                    // 两种情况:情况1,相加==has_money
                    if ((cost + gems_price_vec[j]) == has_money)
                        gems_buy_cnt_list.push_back(j - i + 1);
                    else // 情况2,相加>has_money
                        gems_buy_cnt_list.push_back(j - i);
                    cost = 0;
                    break;
                }
                else
                {
                    cost += gems_price_vec[j];
                }
            }
        }
    }

    gems_buy_cnt_list.sort();

    cout << gems_buy_cnt_list.back() << endl;
}

int main()
{
    HuaWei_OD_test19();
    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值