【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;
}
相关推荐
高山有多高4 小时前
从 0 到 1 保姆级实现C语言双向链表
c语言·开发语言·数据结构·c++·算法·visual studio
今后1234 小时前
【数据结构】冒泡、选择、插入、希尔排序的实现
数据结构·算法·排序算法
草莓熊Lotso4 小时前
《算法闯关指南:优选算法--滑动窗口》--14找到字符串中所有字母异位词
java·linux·开发语言·c++·算法·java-ee
hhhhhshiyishi5 小时前
WLB公司内推|招联金融2026届校招|18薪
java·算法·机器学习·金融·求职招聘
acaad5 小时前
采用libreoffice将word、excel等文件转换为pdf格式
pdf·word·libreoffice
MATLAB代码顾问5 小时前
Python实现手榴弹爆炸算法(Grenade Explosion Method, GEM)(附完整代码)
开发语言·python·算法
SuperCandyXu5 小时前
P2168 [NOI2015] 荷马史诗-提高+/省选-
数据结构·c++·算法·洛谷
无损去水印精灵6 小时前
抖音视频图片如何去水印?去水印工具分享
经验分享·笔记·算法·音视频
wewe_daisy6 小时前
矩阵、线性代数
线性代数·算法·矩阵