이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "molecules.h"
#include <bits/stdc++.h>
using namespace std;
std::vector<int> find_subset(int l, int u, std::vector<int> w) {
int n = (int) w.size();
vector<vector<int>> dp(u + 1);
vector<bool> bdp(u + 1);
bdp[0] = true;
if (n <= 100 && u <= 1000) {
for (int i = 0; i < n; i++) {
auto ndp = dp;
auto bbdp = bdp;
for (int j = w[i]; j <= u; j++) {
if (!bdp[j] && bdp[j - w[i]]) {
bbdp[j] = true;
ndp[j] = dp[j - w[i]];
ndp[j].push_back(i);
}
}
dp = ndp;
bdp = bbdp;
}
for (int i = l; i <= u; i++) {
if (bdp[i]) {
return dp[i];
}
}
} else {
vector<pair<int, int>> nums;
for (int i = 0; i < n; i++) {
if (w[i] <= u) {
nums.emplace_back(w[i], i);
}
}
sort(nums.rbegin(), nums.rend());
int cur = 0;
multiset<pair<int, int>> ms;
for (auto& [x, y] : nums) {
cur += x;
ms.insert({x, y});
while (cur > u) {
int remove = u - cur;
auto lb = ms.lower_bound({remove, -1});
cur -= (*lb).first;
ms.erase(lb);
}
}
if (cur < l || cur > u) {
return {};
}
vector<int> res;
for (auto s : ms) {
res.push_back(s.second);
}
return res;
}
return {};
}
// int main() {
// int n, l, r;
// cin >> n >> l >> r;
// vector<int> a(n);
// for (int i = 0; i < n; i++) {
// cin >> a[i];
// }
// for (int p : find_subset(l, r, a)) {
// cout << p << ' ';
// }
// }
# | 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... |