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; } ```
查看全文
相关阅读:
ideaj项目切换不同版本的jdk
物理机(window)安装linux系统
linux jar自启动
swap扩容
tomcat加载外部项目
springboot2.3.2控制台输出@RequestMapping路径
linux磁盘扩容
springboot-easycode配置文件修改
List
Map HashMap跟HashTable
原文地址:https://www.cnblogs.com/orangee/p/8913065.html
最新文章
C++ Primer Plus(6th Edition) 习题总结(3)
OpenCV学习总结(1)-第一个OpenCV工程
[C++] C++11标准总结
[C++] C++的位操作
[C++] STL标准模板库
[C++] string
[C++] C++的代码重用
[C++] 类的动态内存分配
[C++] 友元
装饰器模式
热门文章
适配器模式
抽象工厂模式
外观模式
策略模式
模板方法模式
代理模式
工厂方法模式
迭代器模式
required a bean of type 'javax.sql.DataSource' that could not be found.
java: 无效的标记: -parameters
Copyright © 2011-2022 走看看