字符串
Minion_w
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
HDU 1251统计难题 Trie
题目链接ACCode:#include<iostream> #include<cstdio> #include<cstring> using namespace std; int Trie[400001][26]; int sum[400001]; bool v[400001]; int tot; void Insert(char *s) //向整棵树上插...原创 2018-05-14 19:50:35 · 255 阅读 · 0 评论 -
UVA 11448 Hyper Prefix Sets
题目链接AcCode://数组开的过大也会影响时间 #include<iostream> #include<cstdio> #include<cstring> using namespace std; int ans, tot; int Trie[400001][65]; int v[400001]; void Insert(char *s) { i...原创 2018-05-14 21:39:53 · 362 阅读 · 0 评论
分享