이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#ifdef LOCAL
#include "debug.h"
#else
#define debug(...) 42
#endif
int main() {
ios::sync_with_stdio(false); cin.tie(nullptr);
int s, n; cin >> s >> n;
vector<int> dp(s + 1);
vector<vector<array<int, 2>>> cands(s);
while (n--) {
int v, w, k; cin >> v >> w >> k;
cands[--w].push_back({v, k});
}
vector<array<int, 2>> items;
for (int w = 0; w < s; ++w) {
sort(cands[w].begin(), cands[w].end());
int cnt = s / (w + 1);
while (cands[w].size() && cnt) {
auto [x, y] = cands[w].back(); cands[w].pop_back();
int k = min(y, cnt);
while (k--) {
--cnt;
items.push_back({w + 1, x});
}
}
}
for (auto [w, x] : items) {
for (int j = s; j >= w; --j) {
dp[j] = max(dp[j], dp[j - w] + x);
}
}
cout << dp.back();
return 0;
}
# | 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... |