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