이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <algorithm>
#include <string>
#include <cmath>
#include <set>
#include <array>
#include <cstdio>
#include <vector>
#include <string>
#include <fstream>
#include <tuple>
#include <numeric>
#include <map>
#include <iomanip>
#include <math.h>
#include <queue>
#include <sstream>
#include <stack>
#include <initializer_list>
#include <functional>
#include <cstring>
#include <unordered_map>
using namespace std;
long long mod = 1e9 + 7;
struct item {
int v, w, k;
};
int main() {
//freopen("longpath.in", "r", stdin);
//freopen("longpath.out", "w", stdout);
int n, s;
cin >> s >> n;
vector<item> vec(n);
for (int i = 0; i < n; i++) {
cin >> vec[i].v >> vec[i].w >> vec[i].k;
}
vector<vector<int>> value(2001);
sort( vec.begin( ), vec.end( ), [ ]( const item& x, const item& y )
{
if (x.w == y.w) {
return x.v > y.v;
}
return x.w < y.w;
});
for (int i = 0; i < n; i++) {
if (value[vec[i].w].size() < s / vec[i].w) {
int si = s / vec[i].w - (int) value[vec[i].w].size();
for (int j = 0; j < min(vec[i].k, si); j++) {
value[vec[i].w].push_back(vec[i].v);
}
}
}
vector<vector<int>> dp(2001, vector<int>(s + 1));
for (int i = 1; i < 2001; i++) {
for (int j = 0; j <= s; j++) {
int val = dp[i - 1][j];
int weight = j;
dp[i][j] = max(dp[i][j], dp[i - 1][j]);
for (int z = 0; z < value[i].size(); z++) {
weight += i;
if (weight > s) {
break;
}
val += value[i][z];
dp[i][weight] = max(dp[i][weight], val);
}
}
}
int m = 0;
for (int i = 0; i <= 2000; i++) {
m = max(m, dp[s][i]);
}
cout << m << "\n";
}
컴파일 시 표준 에러 (stderr) 메시지
knapsack.cpp: In function 'int main()':
knapsack.cpp:51:36: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
51 | if (value[vec[i].w].size() < s / vec[i].w) {
| ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~
knapsack.cpp:64:31: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
64 | for (int z = 0; z < value[i].size(); z++) {
| ~~^~~~~~~~~~~~~~~~~
# | 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... |