酷暑一夏1

不忘初心,方得始终


  1. Vijos 基础01背包问题 1133 装箱问题,1104 采药,1025 小飞侠的游园方案 题解

    题目略 题解直接套模版。装箱问题需要输出$V-dp[n][V]$,其它输出$dp[n][V]$。 代码1234567891011121314151617181920//1025#include<cstdio>#include<algorithm>const int MAXN=100+5;const int MAXV=1000+5;int dp[MAXN][MAXV];int …

    于  01背包, Vijos, 问题集合 继续阅读