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 i = 0, r = 0, sum = 0;
vector<int> ans;
while(r < n){
sum+=rw[r++].first;
while(sum > u){
sum -= rw[i++].first;
}
if(sum > l){
for(; i <= r; i++){
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... |