이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define int long long
const int MAXS = 2005;
int dp[MAXS];
void add(int weight, int value) {
for (int i = MAXS - 1; i >= 0; --i) {
if (i + weight < MAXS) dp[i + weight] = max(dp[i + weight], value + dp[i]);
}
}
signed main() {
for (auto& i : dp) i = -1e18;
dp[0] = 0;
int n, s; cin >> s >> n;
for (int i = 1; i <= n; ++i) {
int value, weight, count;
cin >> value >> weight >> count;
count = min(count, s);
int x = 1;
while (count >= x) {
add(weight * x, value * x);
count -= x;
x *= 2;
}
if (count) add(weight * count, value * count);
}
cout << *max_element(dp, dp + s + 1);
}
# | 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... |