This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "molecules.h"
#include <bits/stdc++.h>
using namespace std;
#define pb push_back
vector<int> find_subset(int l, int u, vector<int> w) {
int n = w.size();
pair<int,int> rw[n];
for(int i = 0; i < n; i++)rw[i] = {w[i], i};
sort(rw, rw+n);
long long s = 0, sum = 0;
vector<int> ans;
for(int i = 0; i < n; i++){
sum+=rw[i].first;
while(sum > u)sum-=rw[s++].first;
if(sum >= l){
for(int j = s; j <= i; j++)ans.pb(rw[i].second);
return ans;
}
}
return ans;
}
# | 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... |