ACM
BruceAYG
彪悍人生无须解释
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
字典树 hdu 4287
http://acm.hdu.edu.cn/showproblem.php?pid=4287 很有意思的一道题 #include"stdio.h" #include"string.h" #include"stdlib.h" #include"algorithm" using namespace std; struct Trie { struct Trie * next[26]; int f原创 2015-07-30 14:18:25 · 420 阅读 · 0 评论 -
hdu 1247
http://acm.hdu.edu.cn/showproblem.php?pid=1247 #include"stdio.h" #include"stdlib.h" #include"string.h" #include"algorithm" using namespace std; char xx[50005][1001]; struct Trie { struct Tri原创 2015-07-24 10:48:35 · 365 阅读 · 0 评论 -
字典树 hdu 1075
#include"stdio.h" #include"ctype.h" #include"stdlib.h" #include"string.h" #include"algorithm" using namespace std; struct Trie { struct Trie * next[26]; int flag; }; char xx[1000005][15];原创 2015-07-24 11:06:48 · 361 阅读 · 0 评论
分享