01背包,没啥说的,顺说点题目无关的吧,01背包从后往前推,完全背包从前往后推,要小心越界
#include <iostream> #include <cstdio> #include <cstdlib> #include <cstring> #include <algorithm> using namespace std; int max(int a, int b){ return a > b ? a : b; } int main() { int m, n; cin >> m >> n; int cost[101] = { 0 }; int value[101] = { 0 }; for (int i = 0; i < n; i++){ cin >> cost[i] >> value[i]; } int pos[1001] = { 0 }; for (int i = 0; i < n; i++){ for (int j = m; j >= cost[i]; j--){ pos[j] = max(pos[j], pos[j - cost[i]] + value[i]); } } cout << pos[m] << endl; return 0; }
原文:https://www.cnblogs.com/Vetsama/p/12288366.html