이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "molecules.h"
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
std::vector<int> find_subset(int l, int u, std::vector<int> w) {
vector<int> res;
vector<pair<ll,int>> w_sort;
int n=w.size();
for(int i=0;i<n;i++){
w_sort.push_back({w[i],i});
}
sort(w_sort.begin(),w_sort.end(),greater<pair<ll,int>>());
ll sum=0;
for(auto p:w_sort){
if(sum+p.first<=u){
sum+=p.first;
res.push_back(p.second);
}
}
return (sum>=l)?res:(std::vector<int>(0));
}
# | 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... |