本文主要是介绍【CSP试题回顾】202209-2-何以包邮?(优化),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
CSP-202209-2-何以包邮?
解题代码
#include <iostream>
#include <set>
using namespace std;int n, x, a;
set<int>MySet;int main() {cin >> n >> x;for (size_t i = 0; i < n; i++){cin >> a;set<int>SetTemp;for (auto& it : MySet) {SetTemp.insert(it + a);}MySet.insert(SetTemp.begin(), SetTemp.end());MySet.insert(a);}for (auto& it : MySet) {if (it >= x) {cout << it;return 0;}}return 0;
}
这篇关于【CSP试题回顾】202209-2-何以包邮?(优化)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!