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;
struct mol{
	int loc;
	long long val;
	bool operator<(const mol& rhs) const{
		if(val == rhs.val){
			return loc < rhs.loc;
		}
		return val < rhs.val;
	}
};
vector<mol> v;
vector<long long> s;
 
std::vector<int> find_subset(int l, int u, std::vector<int> w) {
	int i, n = w.size();
	mol tmp;
	for( i = 0; i < n; i++){
		tmp.loc = i;
		tmp.val = w[i];
		v.push_back(tmp);
	}
	
	sort(v.begin(), v.end());
	
	s.push_back(0LL);
	
	for(i = 0; i < n; i++){
		s.push_back(s[i] + (long long)v[i].val);
	}
	
	for( i = 1;i <=n ; i++){
		if(s[n] - s[ n - i] >= (long long)l){
			break;
		}
	}
	if(s[i] > (long long)u || i == n + 1){
		return std::vector<int>(0);
	}
	vector<int> ans;
	int j;
	for( j = 1; i>0 ;j++){
		if(n - j == i -1){
			for(i = i - 1; i >= 0 ; i--){
				ans.push_back(v[i].loc);
			}
			break;
		}
		if(s[n - j] - s[n - i -j] < (long long)l){
			ans.push_back(v[n - j].loc);
			l -= v[n - j].val;
			i--;
			if(i == 0){
				break;
			}
		}
	}
	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... |