Live2D
摘要: 树形DP,求最小点覆盖集 #include<cstdio> #include<iostream> #include<cstring> #include<algorithm> #define maxn 1510 using namespace std; struct node { int ed,nxt 阅读全文
posted @ 2019-11-10 18:55 Hoyoak 阅读(156) 评论(0) 推荐(0) 编辑
摘要: 树形背包+一点小改动 #include<cstdio> #include<iostream> #include<cstring> #include<algorithm> #define maxn 110 using namespace std; struct node { int ed,len,nx 阅读全文
posted @ 2019-11-10 10:02 Hoyoak 阅读(96) 评论(0) 推荐(0) 编辑
摘要: 树形背包QwQ #include<cstdio> #include<iostream> #include<cstring> #include<algorithm> #define maxn 310 using namespace std; struct node { int ed,nxt; }; n 阅读全文
posted @ 2019-11-10 10:01 Hoyoak 阅读(106) 评论(0) 推荐(0) 编辑