# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
751069 | KN200711 | Detecting Molecules (IOI16_molecules) | C++14 | 3 ms | 596 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 <bits/stdc++.h>
using namespace std;
vector<int> find_subset(int l, int u, vector<int> w) {
int ans = 0;
vector< pair<int, int> > w1(w.size());
for(int k=0;k<w.size();k++) {
w1[k].first = w[k];
w1[k].second = k;
}
sort(w1.begin(), w1.end());
vector<int> sp;
sp.clear();
for(int k=0;k<w1.size();k++) {
if(ans + w1[k].first <= u) {
ans += w1[k].first;
sp.push_back(w1[k].second);
}
}
if(ans >= l) return sp;
int V1 = sp.size() - 1, W = w.size() - 1;
while(ans < l && V1 >= 0 && W >= 0) {
ans += w1[W].first - w[sp[V1]];
sp[V1] = w1[W].second;
V1--;
W--;
}
if(ans >= l) return sp;
sp.clear();
return sp;
}
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... |