# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
772127 | Tkm_algo | Detecting Molecules (IOI16_molecules) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "bits/stdc++.h"
// #include "molecules.h"
using namespace std;
using ll = long long;
const int N = 1e4 + 10;
vector<int> find_subset(int l, int u, vector<int> w) {
vector<int> v(N);
v[0] = 1;
for (int y = 0; y < w.size(); y++) {
int x = w[y];
for (int i = N - 1; i >= 0; i--) {
if (v[i] && i + x < N) {
v[i + x] = y;
}
}
}
int res = 0;
for (int i = l; i <= u; i++) {
if (v[i]) {
res = i;
break;
}
}
vector<int> ans;
while (res != 0) {
ans.push_back(v[res]);
res -= w[v[res]];
}
return ans;
}
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
int l, u;
cin >> l >> u;
int n;
cin >> n;
vector<int> w;
for (int i = 0; i < n; i++) {
int x;
cin >> x;
w.push_back(x);
}
vector<int> ans = find_subset(l, u, w);
for (auto x : ans) {
cout << x << ' ';
}
}