【算法练习】CSP--202209-2--何以包邮?

  • 将所有价格组合模拟进book数组
  • 每一轮循环进行降重,优化时间/空间复杂度
  • 数组降重
#include <iostream>
#include <vector>
#include <algorithm> 
#include <cmath>

#define ll long long
using namespace std;

ll n, x, pi;

int main()
{
    cin >> n >> x;
	vector<ll>book;
	for (size_t i = 0; i < n; i++)
	{
		cin >> pi;
		ll lenth = book.size();
		for (size_t j = 0; j < lenth; j++)
		{
			book.push_back(book[j] + pi);
		}
		book.push_back(pi);

		sort(book.begin(), book.end());
		auto last = unique(book.begin(), book.end());
		book.erase(last, book.end());
	}

	for (size_t i = 1; i < book.size(); i++)
	{
		if(x == book[i - 1])
		{
			cout << book[i - 1];
			return 0;
		}
		if ((x > book[i - 1] && x < book[i]))
		{
			cout << book[i];
			return 0;
		}
	}
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值