# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
820175 | uped | Knapsack (NOI18_knapsack) | C++14 | 172 ms | 262144 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
//
// Created by MiłoszK on 11.08.2023.
//
// Two Sets II
#include<bits/stdc++.h>
using namespace std;
using ll = long long;
vector<ll> sieve(ll n) {
vector<bool> is_prime(n + 1, true);
is_prime[0] = is_prime[1] = false;
for (ll i = 2; i <= n; i++) {
if (is_prime[i] && (long long) i * i <= n) {
for (ll j = i * i; j <= n; j += i)
is_prime[j] = false;
}
}
vector<ll> primes;
for (ll i = 2; i <= n; ++i) {
if (is_prime[i]) {
primes.push_back(i);
}
}
return primes;
}
void fastio() {
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
}
void fileio(const string &name) {
freopen((name + ".in").c_str(), "r", stdin);
freopen((name + ".out").c_str(), "w", stdout);
}
//ll MOD = 1e9 + 7;
//ll TWO_MOD_INV = 500000004;
struct Item {
int value;
int weight;
int amount;
};
int main() {
vector<Item> items;
ll s, n;
cin >> s >> n;
items.resize(n);
for (ll i = 0; i < n; ++i) {
int v, w, k;
cin >> v >> w >> k;
items[i] = {v, w, k};
}
vector<vector<ll>> dp(s + 1, vector<ll>(n + 1));
for (ll i = n - 1; i >= 0; --i) {
for (ll j = 0; j <= s; ++j) {
for (ll k = 0; k <= items[i].amount; ++k) {
if (j - items[i].weight * k >= 0) {
dp[j][i] = max(dp[j][i], dp[j - items[i].weight * k][i + 1] + items[i].value * k);
} else {
break;
}
}
}
}
// vector<ll> dp2(s + 1);
// for (ll i = n - 1; i >= 0; --i) {
// for (ll j = s; j >= 0; --j) {
// for (ll k = 0; k <= items[i].amount; ++k) {
// if (j - items[i].weight >= 0) {
// dp2[j] = max(dp2[j], dp2[j - items[i].weight * k] + items[i].value * k);
// }
// }
// }
// }
cout << dp[s][0];
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... |