【枚举+trie+dfs】CF514 C

Problem - 514C - Codeforces

题意:

思路:

其实是trie上dfs的板题

先把字符串插入到字典树中

对于每次询问,都去字典树上dfs

注意到字符集只有3,因此如果发现有不同的字符,去枚举新的字符

Code:

cpp 复制代码
#include <bits/stdc++.h>

using i64 = long long;

using namespace std;

const int N = 4e5 + 10;
const int M = 3e6 + 10;
const int P = 131;

string s;

int tot = 0;
int tag[N];
int tr[N][30];

void insert(string x) {
	int p = 0;
	for (int i = 0; i < x.size(); i ++) {
		int u = x[i] - 'a';
		if (! tr[p][u]) {
			tr[p][u] = ++tot;
		}
		p = tr[p][u];
	}
	tag[p] = 1;
}
bool dfs(int dep, int u, int num) {
	if (s[dep]) {
		int v = s[dep] - 'a';
		if (tr[u][v]) {
			if (dfs(dep + 1, tr[u][v], num)) return true;
		}
		if (!num) {
			for (int j = 0; j < 3; j ++) {
				if (j != v && tr[u][j]) {
					if (dfs(dep + 1, tr[u][j], num + 1)) return true;
				}
			}
		}
	}
	else if (tag[u] && num) return true;
	return false;
}
void solve() {
	int n,m;
	cin >> n >> m;

	for (int i = 1; i <= n; i ++) {
		cin >> s;
		insert(s);
	}

	for (int i = 1; i <= m; i ++) {
		cin >> s;
		if (dfs(0, 0, 0)) {
			cout << "YES" << "\n";
		}else {
			cout << "NO" << "\n";
		}
	}
}
signed main(){
	ios::sync_with_stdio(false);
	cin.tie(nullptr);

	int t = 1;
	//cin >> t;
	while(t --) {
		solve();
	}
	return 0;
}
相关推荐
千金裘换酒28 分钟前
LeetCode 移动零元素 快慢指针
算法·leetcode·职场和发展
wm10431 小时前
机器学习第二讲 KNN算法
人工智能·算法·机器学习
NAGNIP1 小时前
一文搞懂机器学习线性代数基础知识!
算法
NAGNIP1 小时前
机器学习入门概述一览
算法
iuu_star2 小时前
C语言数据结构-顺序查找、折半查找
c语言·数据结构·算法
Yzzz-F2 小时前
P1558 色板游戏 [线段树 + 二进制状态压缩 + 懒标记区间重置]
算法
漫随流水2 小时前
leetcode算法(515.在每个树行中找最大值)
数据结构·算法·leetcode·二叉树
mit6.8242 小时前
dfs|前后缀分解
算法
扫地的小何尚3 小时前
NVIDIA RTX PC开源AI工具升级:加速LLM和扩散模型的性能革命
人工智能·python·算法·开源·nvidia·1024程序员节
千金裘换酒4 小时前
LeetCode反转链表
算法·leetcode·链表