摘要:
#include<iostream> #include<cstdio> #include<cstring> #include<algorithm> #define maxn 200 using namespace std; struct node { int x,y,z; }; int cmp(no 阅读全文
摘要:
dp的问题除了递推过程的设计之外 还有数据结构的选择以及怎样合理的填充数据 这个的填充是个坑。。#include<iostream> #include<cstdio> #include<algorithm> #include<cstring> using namespace std; #define 阅读全文