字典树
yo_haha
这个作者很懒,什么都没留下…
展开
-
hdu 1251 字典树
http://acm.hdu.edu.cn/showproblem.php?pid=1251 MLE了无数次…最后换了种方法#include <iostream> #include <cstring> #include <cstdio> using namespace std; struct node { int num; int next[26]; void ini()原创 2015-06-08 14:55:29 · 269 阅读 · 0 评论 -
hdu 1671 字典树
http://acm.hdu.edu.cn/showproblem.php?pid=1671 简单的字典树 注意每次要释放内存 不然会MLE#include <iostream> #include <cstring> #include <string> #include <algorithm> using namespace std; struct node { int sign;原创 2015-06-08 23:48:25 · 285 阅读 · 0 评论