이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "molecules.h"
#include<bits/stdc++.h>
#define F first
#define S second
#define pb push_back
using namespace std;
vector<pair<int,int> >a;
vector<int>ans;
bool x;
vector<int> find_subset(int L, int R, vector<int> w)
{
for(int i=0; i<(int)w.size(); i++)
a.pb({w[i], i});
sort(a.begin(), a.end());
int l=0, r=0;
long long sum=0;
while(r<(int)w.size())
{
sum+=a[r].F;
if(L<=sum and sum<=R)
{
x=1;
break;
}
while(R<sum) sum-=a[l++].F;
if(L<=sum and sum<=R)
{
x=1;
break;
}
r++;
}
if(x)
for(int i=l; i<=r; i++) ans.pb(a[i].S);
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... |