이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <algorithm>
#include <iostream>
#include <vector>
#define ll long long
#define ull unsigned long long
#define pii std::pair<int, int>
#define NMAX 100'007
#define SMAX 2007
int n, s;
std::vector<pii> bestW[SMAX];
std::vector<int> v, w;
int dp[SMAX];
void citire() {
std::cin >> s >> n;
int a, b, c;
for (int i = 1; i <= n; i++) {
std::cin >> a >> b >> c;
bestW[b].push_back({a, c});
}
}
int main() {
citire();
for (int i = 1; i <= s; i++) {
std::sort(bestW[i].begin(), bestW[i].end());
for (int j = 0; j < s && !bestW[i].empty(); j += i) {
v.push_back(bestW[i].back().first);
w.push_back(i);
if (!--bestW[i].back().second)
bestW[i].pop_back();
}
}
n = v.size();
dp[0] = 0;
for (int i = 0; i < n; i++) {
for (int j = s; j >= w[i]; j--) {
dp[j] = std::max(dp[j], dp[j - w[i]] + v[i]);
}
}
std::cout << dp[s];
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... |