【Trie】 UVA1401 Remember the Word

代码

cpp 复制代码
#include <string.h>
#include <stdlib.h>
#include <algorithm>
#include <vector>
#include <functional>
#include <math.h>
#include <string>
#include <iostream>

using namespace std;

typedef long long ll;
typedef pair<int, int> pii;

#define _for(i, a, b) for (int i = (a); i < (b); i++)
#define _rep(i, a, b) for (int i = (a); i <= (b); i++)
#define fio ios::sync_with_stdio(false), cin.tie(0), cout.tie(0)
#define reg register
#define ri reg int

namespace faio
{
	char buf[1 << 20], *p1, *p2;
	#define getchar() (p1 == p2 && (p2 = (p1 = buf) + fread(buf, 1, 1 << 20, stdin), p1 == p2) ? EOF: *p1++)
	template <typename T> inline void read(T &t) {
		ri v = getchar();T f = 1;t = 0;
		while (!isdigit(v)) {if (v == '-')f = -1;v = getchar();}
		while (isdigit(v)) {t = (t << 3) + (t << 1) + v - '0';v = getchar();}
		t *= f;
	}
	template <typename T,typename... Args> inline void read(T &t, Args&... args) {read(t);read(args...);}
}

constexpr int N = 300010, mod = 20071027;
char str[N], word[128];
int dp[N];

typedef struct Trie_t
{
	bool is_end;
	Trie_t* son[26];
}*Trie;

Trie NewNode() {
	Trie ret = (Trie) malloc(sizeof(Trie_t));
	for (int i = 0; i < 26; i++) ret->son[i] = NULL;
	ret->is_end = false;
	return ret;
}
void FreeNode(Trie p) { // 释放 Trie 树
	if (p == NULL) return ;
	for (int i = 0; i < 26; i++) FreeNode(p->son[i]);
	free(p);
}
void insert(Trie root, const char* _str)
{
	Trie u = root; int len = strlen(_str);
	for (int i = 0; i < len; i++) {
		int idx = _str[i] - 'a';
		if (u == NULL) printf("u is NULL");
		if (u->son[idx] == NULL) u->son[idx] = NewNode();
		u = u->son[idx];
	}
	u->is_end = true;
}
void solve(Trie root)
{
	static int Kase = 0;
	int n = strlen(str); dp[n] = 1;
	for (int i = n - 1; i >= 0; i--) {
		// 在 Trie 树里面找
		Trie u = root;
		for (int j = i; j < n; j++) {
			int idx = str[j] - 'a';
			if (u->son[idx] == NULL) break;
			u = u->son[idx];
			if (u->is_end) dp[i] = (dp[i] + dp[j + 1] + mod) % mod;
		}		
	}
	printf("Case %d: %d\n", ++Kase, dp[0]);
}

int main()
{	
	while (scanf("%s", str) == 1) {
		int p; scanf("%d", &p);
		Trie root = NewNode();
		memset(dp, 0, sizeof(dp));
		
		while (p--) {
			scanf("%s", word);
			insert(root, word);
		}
		solve(root);
		FreeNode(root);
	}
	return 0;
}
相关推荐
零小陈上(shouhou6668889)5 分钟前
K-近邻算法 - lazy learning的代表
算法·近邻算法
有一个好名字11 分钟前
力扣-从字符串中移除星号
java·算法·leetcode
萧瑟其中~15 分钟前
二分算法模版——基础二分查找,左边界查找与右边界查找(Leetcode的二分查找、在排序数组中查找元素的第一个位置和最后一个位置)
数据结构·算法·leetcode
码上就好ovo17 分钟前
Atcoder Beginnner Contest 440
算法
高洁0124 分钟前
CLIP 的双编码器架构是如何优化图文关联的?(3)
深度学习·算法·机器学习·transformer·知识图谱
jllllyuz30 分钟前
MATLAB实现蜻蜓优化算法
开发语言·算法·matlab
iAkuya32 分钟前
(leetcode)力扣100 36二叉树的中序遍历(迭代递归)
算法·leetcode·职场和发展
wangwangmoon_light40 分钟前
1.1 LeetCode总结(线性表)_枚举技巧
算法·leetcode·哈希算法
mit6.8241 小时前
几何|阻碍链
算法