이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "molecules.h"
#include<algorithm>
#include<assert.h>
#include<numeric>
using namespace std;
using ll = long long;
vector<int> find_subset(int weight_low, int weight_hi, vector<int> w) {
vector<ll> v(w.begin(), w.end());
sort(v.begin(), v.end());
sort(w.begin(), w.end());
int n = v.size();
for(int l = 0; l < n; ++l){
for(int r = l; r < n; ++r){
ll sum = accumulate(v.begin() + l, v.begin() + r + 1, 0ll);
if(weight_low <= sum and sum <= weight_hi){
return vector<int>(w.begin() + l, w.begin() + r + 1);
}
}
}
return vector<int>();
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |