摘要:
树形DP,求最小点覆盖集 #include<cstdio> #include<iostream> #include<cstring> #include<algorithm> #define maxn 1510 using namespace std; struct node { int ed,nxt 阅读全文
摘要:
树形背包+一点小改动 #include<cstdio> #include<iostream> #include<cstring> #include<algorithm> #define maxn 110 using namespace std; struct node { int ed,len,nx 阅读全文
摘要:
树形背包QwQ #include<cstdio> #include<iostream> #include<cstring> #include<algorithm> #define maxn 310 using namespace std; struct node { int ed,nxt; }; n 阅读全文