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 <bits/stdc++.h>
#include "molecules.h"
using namespace std;
std::vector<int> find_subset(int l, int u, std::vector<int> w)
{
int n = w.size();
sort(w.begin(),w.end());
vector<int> result;
while(n != 1 && w[n-1] + w[n-2] < l)
{
result.push_back(n-1);
l -= w[n-1];u -= w[n-1];
n--;
}
int left = 0,right = n-1;
while(left != right)
{
if(w[left] + w[right] > u)right--;
else if(w[left] + w[right] < l)left++;
else break;
}
if(left == right)while(left != n-1 && w[left] < l){left++;right++;}
if(left == right && (w[left] < l || w[left] > u))return {0};
result.push_back(left+1);
if(left != right)result.push_back(right+1);
return result;
}
# | 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... |