이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define ll long long
#define file "knapsack"
using namespace std;
const int maxN = 1e5 + 5;
int t, n, s;
int v[maxN], w[maxN], k[maxN];
ll dp[2005];
vector< pair<int, int> > obj[maxN];
void solve(){
for (int i = 1; i <= s; ++i){
if (obj[i].size() == 0)
continue;
sort(obj[i].begin(), obj[i].end(), greater<pair<int, int>>());
int id = 0;
for (int j = 0; j * i < s; ++j){
if (id >= obj[i].size())
break;
for (int f = s; f >= i; --f){
dp[f] = max(dp[f], dp[f - i] + obj[i][id].first);
}
--obj[i][id].second;
if (obj[i][id].second == 0)
++id;
}
}
cout << dp[s];
}
signed main(){
// freopen(file".inp", "r", stdin);
// freopen(file".out", "w", stdout);
ios_base::sync_with_stdio(false); cin.tie(0);
t = 1;
while (t){
cin >> s >> n;
for (int i = 1; i <= n; ++i){
cin >> v[i] >> w[i] >> k[i];
obj[w[i]].push_back({v[i], k[i]});
}
solve();
--t;
}
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
knapsack.cpp: In function 'void solve()':
knapsack.cpp:21:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
21 | if (id >= obj[i].size())
| ~~~^~~~~~~~~~~~~~~~
# | 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... |