洛谷P2014 选课 - 树上背包
注意在dp中x!=0那一段 其实是对状态的修正#include <algorithm>#include <iostream>#include <cstdio>using namespace std;const int MAXN = 300 + 10;int n,m,tot,head[MAXN],k[MAXN],son[MAXN],f[MAXN][M...