# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1086674 | quangminh412 | Knapsack (NOI18_knapsack) | C++14 | 135 ms | 262144 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#define faster() ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
#define ll long long
const int maxn = 1e5 + 9;
ll s;
int n;
ll v[maxn], w[maxn], k[maxn];
int main()
{
if (fopen("BALO.INP", "r"))
{
freopen("BALO.INP", "r", stdin);
freopen("BALO.OUT", "w", stdout);
}
faster();
cin >> s >> n;
bool sub2 = true;
for (int i = 1; i <= n; i++)
{
cin >> v[i] >> w[i] >> k[i];
if (k[i] != 1) sub2 = false;
}
if (n == 1)
{
ll num = s / w[1];
cout << num * v[1] << '\n';
return 0;
} else
if (sub2 == true)
{
vector<vector<ll>> dp(n + 5, vector<ll>(s + 5, 0));
ll ans = 0;
for (int i = 1; i <= n; i++)
for (int j = 0; j <= s; j++)
{
dp[i][j] = dp[i - 1][j];
if (j - w[i] >= 0)
dp[i][j] = max(dp[i][j], dp[i - 1][j - w[i]] + v[i]);
if (i == n) ans = max(ans, dp[i][j]);
}
cout << ans << '\n';
return 0;
}
ll dp[n + 5][s + 5][s + 5];
ll mx[n + 5][s + 5];
memset(dp, sizeof(dp), 0);
memset(mx, sizeof(mx), 0);
ll ans = 0;
for (int i = 1; i <= n; i++)
for (int num = 0; num <= s; num++)
for (int j = s; j >= 0; j--)
{
dp[i][num][j] = mx[i - 1][j];
if (num > k[i]) continue;
if (j - num * w[i] >= 0)
dp[i][num][j] = max(dp[i][num][j], mx[i - 1][j - num * w[i]] + num * v[i]);
mx[i][j] = max(mx[i][j], dp[i][num][j]);
if (i == n) ans = max(ans, dp[i][num][j]);
}
cout << ans << '\n';
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |