# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
31064 | platinant | Detecting Molecules (IOI16_molecules) | C++14 | 0 ms | 1936 KiB |
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 <algorithm>
using namespace std;
typedef pair<int,int> pp;
vector<int> find_subset(int l, int u, vector<int> w) {
vector<int> ret;
vector<pp> a(w.size());
for(int i=0;i<w.size();i++){
a[i]=pp(w[i],i);
}
sort(a.begin(),a.end());
int len=0,sum=0;
while(len<a.size()&&sum<l){
sum+=a[len].first;
len++;
}
if(sum<=u){
for(int i=0;i<len;i++)ret.push_back(a[i].second);
return ret;
}
sum -= a[0].first;
int L, R;
for(R=len-1;R<w.size();R++){
L=R-len+2;
if(sum>=l){
for(int i=L;i<=R;i++)ret.push_back(a[i].second);
return ret;
}
if(R+1<w.size())sum+=a[R+1].first-a[L].first;
}
return vector<int>(0);
}
Compilation message (stderr)
# | 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... |