이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define int long long
struct seg {
int v , w , k;
};
signed main() {
ios::sync_with_stdio(0); cin.tie(NULL);
cout.tie(NULL);
int s , n; cin >> s >> n;
vector<seg> a(n + 1);
for (int i = 1 ; i <= n ; i++) {
cin >> a[i].v >> a[i].w >> a[i].k;
}
vector<vector<int>> f;
vector<int> g;
f.assign(n + 1 , vector<int> (s + 1 , 0));
for (int i = 1 ; i <= n ; i++) {
g.assign(s + 1 , 0);
for (int j = 0 ; j <= s ; j++) {
if (a[i].w <= j) {
int x = f[i][j - a[i].w] + a[i].v;
f[i][j] = f[i - 1][j];
if (x > f[i - 1][j] && x > (f[i - 1][j - a[i].w] + a[i].v) && (g[j - a[i].w] + 1) <= a[i].k) {
f[i][j] = f[i][j - a[i].w] + a[i].v;
g[j] = g[j - a[i].w] + 1;
}
if ((f[i - 1][j - a[i].w] + a[i].v) > f[i - 1][j] && (f[i - 1][j - a[i].w] + a[i].v) >= x) {
f[i][j] = f[i - 1][j - a[i].w] + a[i].v;
g[j] = 1;
}
}
else f[i][j] = f[i - 1][j];
}
}
int ans = 0;
for (int i = 1 ; i <= s ; i++) {
ans = max(ans , f[n][i]);
}
cout << ans;
return 0;
}
# | 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... |