# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1002521 | ocasu | Detecting Molecules (IOI16_molecules) | C++17 | 0 ms | 0 KiB |
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 int long long
std::vector<int> find_subset(int l, int u, std::vector<int> w) {
sort(w.begin(),w.end());
int n=(int)(w.size());
int pre=0, x=0;
for (auto i: w){
if (pre+i<l) pre+=i, x++;
}
if (x==0){
return {0};
}
int sum=pre, nxt=x, prev=0;
while (sum<l and nxt<n){
sum-=w[prev]; sum+=w[nxt];
nxt++;
prev++;
}
if (sum<l){
return {};
}
vector<int> ans;
for (int i=prev; i<nxt; i++){
ans.push_back(i);
}
return ans;
}