代码和0-1背包非常之像,只是由原来的容量固定,求最大价值,最小邮票数是每个邮票的价值(权重)一样,都为1(枚),在背包大小固定的情况,求最少的邮票数。 // runtime: 4ms // space: 496K #include <iostream> #include <algorithm> using namespace std; const int MAX = 100000; int main() { int total, n; while (cin>> total >> n) { int stamp[...