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>
#pragma GCC optimize("Ofast")
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef long double ld;
#define pb push_back
#define fi first
#define se second
#define bust ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
const int INF = INT_MAX;
const int N = 2 * 1e5 + 10;
const ld eps = 1e-6;
const int mod = 1e9 + 7;
/*int a[N];*/
vector < int > find_subset(int l, int u, vector < int > w)
{
    int s = l, n = w.size();
    ll cursum = 0;
    l = 0;
    int r = 0;
    sort (w.begin(), w.end());
    while (l < n)
    {
        while (r < n && cursum < s)
        {
            cursum += w[r];
            ++r;
        }
        if (cursum >= s && cursum <= u)
        {
            vector < int > result (r - l);
            for (int i = 0; i < r - l; ++i)
                result[i] = w[l + i];
            return result;
        }
        cursum -= w[l];
        ++l;
    }
    return {};
}
/*
int main()
{
    bust
    int t = 1;
    //cin >> t;
    //scanf ("%d", &t);
    while (t--)
        solve ();
    return 0;
}
*/
| # | 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... |