# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
636094 | nehasane | Detecting Molecules (IOI16_molecules) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
// #include "molecules.h"
#include <bits/stdc++.h>
using namespace std;
vector<int> find_subset(int l, int u, vector<int> w) {
vector <int> ans;
int n = w.size(), p = 0;
vector <pair <int, int>> wt(n);
for (int i = 0; i < n; i++)
wt[i] = {w[i], i};
sort(wt.begin(), wt.end());
long long sum = 0;
for (int i = 0; i < n; i++) {
if (sum + wt[i].first >= l) {
p = i;
break;
}
sum += wt[i].first;
ans.push_back(wt[i].second);
}
for (int i = p; i < n; i++) {
if (sum + wt[i].first >= l && sum + wt[i].first <= u) {
ans.push_back(wt[i].second);
sum += wt[i].first;
break;
}
}
if (sum < l)
ans.clear();
return ans;
}
int main() {
int n, l, u;
cin >> n >> l >> u;
vector <int> w(n);
for (int i = 0; i < n; i++)
cin >> w[i];
vector <int> ans = find_subset(l, u, w);
for (auto i : ans)
cout << i << ' ';
cout << '\n';
}