이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int N = 5e2 + 5, inf = 1e9, mod = 998244353;
int dp[106][2005], s, n;
pair<int, pair<int, int>> arr[105];
int main()
{
cin >> s >> n;
for (int i = 1; i <= n; i++)
cin >> arr[i].first >> arr[i].second.first >> arr[i].second.second;
for (int i = 0; i <= s; i++)
for (int j = 0; j <= n; j++)
dp[i][j] = -inf;
dp[0][0] = 0;
for (int i = 1; i <= n; i++)
for (int j = 0; j <= s; j++)
for (int k = 0; k <= arr[i].second.second && k * arr[i].second.first <= j; k++)
dp[i][j] = max(dp[i][j], dp[i - 1][j - k * arr[i].second.first] + arr[i].first * k);
cout << dp[n][s] << "\n";
}
# | 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... |