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