zoukankan
html css js c++ java
Codeforces 514 D R2D2 and Droid Army(Trie树)
[题目链接](http://codeforces.com/problemset/problem/514/D) 大意是判断所给字符串组中是否存在与查询串仅一字符之差的字符串。 关于字符串查询的题,可以用[字典树(Trie树)](http://www.cnblogs.com/orangee/p/8912971.html)来解,第一次接触,做个小记。在查询时按题目要求进行查询。 代码: ```C++ #define _CRT_SECURE_NO_DEPRECATE #include
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std; typedef long long ll; typedef pair
P; typedef map
M; typedef vector
V; typedef queue
Q; const int maxn = 6 * 100000 + 10; const int N = 3; struct trie { trie* next[N]; int count; }; typedef trie* link; link create() { link p = new trie; p->count = 0; for (int i = 0; i < N; ++i) p->next[i] = NULL; return p; } void insert(char* s, link root) { char* p = s; link node = root; while (*p) { if (node->next[*p - 'a']==NULL) node->next[*p - 'a'] = create(); node = node->next[*p - 'a']; ++p; } node->count++; return; } bool query(char* s, link pos,int cnt) { if (*s == ' ') { if (cnt == 1 && pos->count) return true; else return false; } for (int i = 0; i < N; ++i) { if (i != *s - 'a' && cnt==0 && pos->next[i]) { if (query(s + 1, pos->next[i], 1)) return true; } if (i == *s - 'a' && pos->next[i]) { if (query(s + 1, pos->next[i], cnt)) return true; } } return false; } char s[maxn]; int main() { int n,m,k,i,j; link root=create(); cin >> n >> m; for (i = 0; i < n; ++i) { scanf("%s", s); insert(s, root); } for (i = 0; i < m; ++i) { scanf("%s", s); if (query(s, root, 0)) cout << "YES "; else cout << "NO "; } return 0; } ```
查看全文
相关阅读:
1253:抓住那头牛
1251:仙岛求药
1330:【例8.3】最少步数
1329:【例8.2】细胞
1216:红与黑
1217:棋盘问题
回溯法与深度优先搜索的关系
自然数的拆分
100——第35例
100——第34例
原文地址:https://www.cnblogs.com/orangee/p/8913065.html
最新文章
WPF学习(11)2D绘图
WPF学习(10)模板
WPF学习(9)样式和行为
WPF学习(8)数据绑定
Java集合相关
sql中的左连接和右连接
Java中的静态和非静态
前端页面获取ip及地址等信息
Java文件路径中一个点和两个点的区别
对于for循环次数的一些探讨
热门文章
JVM入门
常用pom依赖
Js复制文本到剪贴板
1361:产生数(Produce)
1362:家庭问题(family)
1256:献给阿尔吉侬的花束
1250:The Castle
1249:Lake Counting
1257:Knight Moves
1360:奇怪的电梯(lift)
Copyright © 2011-2022 走看看