This documentation is automatically generated by online-judge-tools/verification-helper
#pragma once
#include <vector>
#include <algorithm>
#include <cassert>
template <class T>
std::vector<T> Knapsack(int n, int wight_limit, const std::vector<T>& value,
const std::vector<int>& weight) {
assert(n == static_cast<int>(value.size()));
assert(n == static_cast<int>(weight.size()));
std::vector<T> dp(wight_limit + 1, 0);
for (int i = 0; i < n; ++i) {
for (int j = 0; j <= wight_limit - weight[i]; ++j) {
dp[j + weight[i]] = std::max(dp[j + weight[i]], dp[j] + value[i]);
}
}
return dp;
}
#line 2 "DP/Knapsack.cpp"
#include <vector>
#include <algorithm>
#include <cassert>
template <class T>
std::vector<T> Knapsack(int n, int wight_limit, const std::vector<T>& value,
const std::vector<int>& weight) {
assert(n == static_cast<int>(value.size()));
assert(n == static_cast<int>(weight.size()));
std::vector<T> dp(wight_limit + 1, 0);
for (int i = 0; i < n; ++i) {
for (int j = 0; j <= wight_limit - weight[i]; ++j) {
dp[j + weight[i]] = std::max(dp[j + weight[i]], dp[j] + value[i]);
}
}
return dp;
}