# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
957562 | roadster | Knapsack (NOI18_knapsack) | C++17 | 2 ms | 1884 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
using vi = vector<int>;
using vvi = vector<vector<int> >;
using pi = pair<int, int>;
using ll = long long;
#define sz(x) (int)(x).size()
#define all(x) (x).begin(), (x).end()
#define f first
#define s second
#define pb push_back
const ll MOD = 1e9 + 7;
ll expo(ll x, ll n) {
ll res = 1LL;
while (n) {
if (n % 2){ res = res * x % MOD; }
x = x * x % MOD;
n /= 2;
}
return res;
}
vector<ll> factorial(int n) {
vector<ll> fact(n + 1);
fact[0] = 1;
for (int i = 1; i <= n; i++) { fact[i] = fact[i - 1] * i % MOD; }
return fact;
}
vector<ll> mod_inverse(int n, ll fact_n) {
vector<ll> inv(n + 1);
inv[n] = expo(fact_n, MOD - 2);
for (int i = n; i >= 1; i--) {
inv[i - 1] = inv[i] * i % MOD;
}
return inv;
}
void setIO(string s) {
freopen((s + ".in").c_str(), "r", stdin);
freopen((s + ".out").c_str(), "w", stdout);
}
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
// your code goes here
int t, n;
cin >> t >> n;
vi v(n + 1), w(n + 1), k(n + 1);
for (int i = 1; i <= n; i++) cin >> v[i] >> w[i] >> k[i];
vector<vector<ll>> dp(n + 1, vector<ll> (t + 1));
for (int i = 1; i <= n; i++) {
vi used(t + 1);
for (int j = 1; j <= t; j++) {
ll a = INT_MIN, b = INT_MIN, c = INT_MIN;
a = dp[i-1][j];
if (j - w[i] >= 0) {
b = dp[i-1][j-w[i]] + v[i];
if (used[j-w[i]] < k[i]) c = dp[i][j-w[i]] + v[i];
}
int res = max({a, b, c});
if (res == a) {
dp[i][j] = res;
} else if (res == b) {
dp[i][j] = res;
used[j] = used[j-w[i]] + 1;
} else if (res == c) {
dp[i][j] = res;
used[j] = used[j-w[i]] + 1;
}
}
}
ll ans = 0LL;
for (int i = 1; i <= t; i++) ans = max(ans, dp[n][i]);
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... |