This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
int main() {
ios::sync_with_stdio(false); cin.tie(nullptr);
int S, n;
cin >> S >> n;
vector<vector<pair<int, int>>> u(S + 1);
while (n--) {
int v, w, k;
cin >> v >> w >> k;
u[w].push_back({v, k});
}
vector<ll> dp(S + 1, -1);
dp[0] = 0;
for (int w = 1; w <= S; w++) {
sort(u[w].rbegin(), u[w].rend());
int s = S / w;
for (auto [v, k] : u[w]) {
int mn = min(s, k);
while (mn--) {
for (int j = S; j >= w; j--)
if (dp[j - w] != -1) dp[j] = max(dp[j], dp[j - w] + v);
}
s -= mn;
}
}
cout << *max_element(dp.begin(), dp.end());
}
# | 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... |