이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using pii = pair<int, int>;
using tiii = tuple<int, int, int>;
int main() {
ios::sync_with_stdio(0); cin.tie(0);
int n, s; cin >> s >> n;
vector < vector < pii > > val(s + 1);
for (int i = 1, v, w, k; i <= n; i++) {
cin >> v >> w >> k;
val[w].push_back({ v, min(k, s / w) });
}
vector < int > dp(s + 1, -1);
dp[0] = 0;
for (int w = 1; w <= s; w++) {
sort(val[w].begin(), val[w].end(), greater < >());
int total = 0;
for (auto [v, k] : val[w]) {
for (int i = 1; i <= k && total <= s; i++) {
for (int cur = s; cur >= w; cur--)
if (dp[cur - w] >= 0)
dp[cur] = max(dp[cur], dp[cur - w] + v);
total += w;
}
}
}
cout << *max_element(dp.begin(), dp.end()) << "\n";
}
컴파일 시 표준 에러 (stderr) 메시지
knapsack.cpp: In function 'int main()':
knapsack.cpp:30:19: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17'
30 | for (auto [v, k] : val[w]) {
| ^
# | 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... |