博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hdu 1247 Hat’s Words(字典树)
阅读量:5108 次
发布时间:2019-06-13

本文共 1790 字,大约阅读时间需要 5 分钟。

Hat’s Words

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 9574    Accepted Submission(s): 3421
Problem Description
A hat’s word is a word in the dictionary that is the concatenation of exactly two other words in the dictionary.
You are to find all the hat’s words in a dictionary.
 
Input
Standard input consists of a number of lowercase words, one per line, in alphabetical order. There will be no more than 50,000 words.
Only one case.
 
Output
Your output should contain all the hat’s words, one per line, in alphabetical order.
 
Sample Input
 
a ahat hat hatword hziee word
 
Sample Output
 
ahat hatword
 
Author
戴帽子的
 

Recommend

题意:推断一个单词能不能有两个单词组成,能够的话就输出。

题解:全部单词建成一颗字典树,单词插入结尾记录单词的个数。查询时直接暴力拆单词推断。

#include
#include
#include
#include
#include
#define N 50020using namespace std;char s[N][42];struct Trie { int num; struct Trie *nxt[26]; Trie() { num=0; for(int i=0; i<26; i++) { nxt[i]=NULL; } }};void Trie_Inser(Trie *p,char s[]) { int i=0; Trie *q=p; while(s[i]) { int nx=s[i]-'a'; if(q->nxt[nx]==NULL) { q->nxt[nx]=new Trie; } i++; q=q->nxt[nx]; } q->num+=1;}bool Trie_Serch(Trie *p,char s[],int be,int en) { Trie *q=p; int i=be; while(i<=en) { int nx=s[i]-'a'; if(q->nxt[nx]==NULL)return false; q=q->nxt[nx]; i++; } if(q->num>0)return true; return 0;}int main() { //freopen("test.in","r",stdin); Trie *p=new Trie; int id=1; while(~scanf("%s",s[id])) { Trie_Inser(p,s[id]); id++; } for(int i=1; i

转载于:https://www.cnblogs.com/zfyouxi/p/5323614.html

你可能感兴趣的文章
MyEclipse10安装SVN插件
查看>>
[转]: 视图和表的区别和联系
查看>>
Regular Experssion
查看>>
python中的字符编码
查看>>
图论例题1——NOIP2015信息传递
查看>>
uCOS-II中的任务切换-图解多种任务调度时机与问题
查看>>
CocoaPods的安装和使用那些事(Xcode 7.2,iOS 9.2,Swift)
查看>>
Android 官方新手指导教程
查看>>
幸运转盘v1.0 【附视频】我的Android原创处女作,请支持!
查看>>
UseIIS
查看>>
为什么int型最大的数是2147483647
查看>>
数据库连接的三层架构
查看>>
集合体系
查看>>
vi命令提示:Terminal too wide
查看>>
nyoj 5 Binary String Matching(string)
查看>>
引用 移植Linux到s3c2410上
查看>>
BizTalk 2010 单机安装
查看>>
人与人之间的差距是从大学开始的
查看>>
vue 开发过程中遇到的问题
查看>>
[Swift]LeetCode341. 压平嵌套链表迭代器 | Flatten Nested List Iterator
查看>>