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; } ```
查看全文
相关阅读:
jetbrains 官网进不去以及webstorm、node下载慢的问题
因为后端 xss 全局过滤器导致的 jquery ajax post 提交的数据全部为null的问题
华为jdk镜像地址
shiro解决两个请求的sessionId相同,但是某一个传入sessionId之后找不到session的原因
推荐一个好的webapp的服务,支持android/ios/小程序打包,集成了大量本地api
对前后端分离的一些经验记录
「caffe编译bug」python/caffe/_caffe.cpp:10:31: fatal error: numpy/arrayobject.h: No such file or directory
「caffe编译bug」 undefined reference to `boost::match_results<__gnu_cxx::__normal_iterator<char const*, std::__cxx11
「caffe编译bug」.build_release/lib/libcaffe.so: undefined reference to cv::imread
python的sorted函数对字典按value进行排序
原文地址:https://www.cnblogs.com/orangee/p/8913065.html
最新文章
Linux命令——tree
VNC
QEMU简介
Linux磁盘管理——XFS文件系统
Linux命令——du
Linux命令——df
Linux磁盘管理——日志文件系统与数据一致性
Linux磁盘管理——directory tree与mount point
Linux命令——e2fsck
Linux命令——dumpe2fs
热门文章
Linux磁盘管理——Ext2文件系统
Linux磁盘管理——BIOS和UEFI
【问题】文件描述符和inode啥区别
Linux命令——rsync
Linux命令——sync
Bash基础——工作管理(Job control)
Bash基础——减号-
windows/linux nginx多个server配置
搭建 vue-element-admin 和 vue-admin-template 的后台框架经验
安装npm install时,长时间停留在fetchMetadata的解决方法
Copyright © 2011-2022 走看看