博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU 1671 Phone List(Trie的应用与内存释放)
阅读量:5233 次
发布时间:2019-06-14

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

Phone List

Time Limit: 3000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)

Total Submission(s): 18217    Accepted Submission(s): 6120

Problem Description
Given a list of phone numbers, determine if it is consistent in the sense that no number is the prefix of another. Let’s say the phone catalogue listed these numbers:
1. Emergency 911
2. Alice 97 625 999
3. Bob 91 12 54 26
In this case, it’s not possible to call Bob, because the central would direct your call to the emergency line as soon as you had dialled the first three digits of Bob’s phone number. So this list would not be consistent.
 

 

Input
The first line of input gives a single integer, 1 <= t <= 40, the number of test cases. Each test case starts with n, the number of phone numbers, on a separate line, 1 <= n <= 10000. Then follows n lines with one unique phone number on each line. A phone number is a sequence of at most ten digits.
 

 

Output
For each test case, output “YES” if the list is consistent, or “NO” otherwise.
 

 

Sample Input
2
 
3
911
97625999
91125426
 
5
113
12340
123440
12345
98346
 

 

Sample Output
NO
YES
 

题目链接:

嗯还是一道简单的Trie,但是对于内存的要求比较高= =不管是malloc或new出来的,用完一定要释放不然……MLE数次。说是Trie其实是学习一下如何进行有效率地释放……

注意题目中可能给的单词顺序不同会出现两种存在前缀的情况

 

例1、输入911 后输入911000,这个比较简单,逐一插入911000的时候若节点存在则检查是否此时的节点的flag为true即这个节点是一个结尾点。

例2、输入911000 后输入911,办法有很多,我是用一个any来记录后面的911插入时是否出现过未出现的字母,显然在节点不存在new的时候any就要变成1了。

 

代码:

#include 
#include
using namespace std;const int N=10;const int M=15;struct Trie{ Trie *nxt[N]; bool flag; Trie() { for (int i=0; i
nxt[indx]) { Trie *one=new Trie(); any=true; cur->nxt[indx]=one; cur=one; } else { cur=cur->nxt[indx]; if(cur->flag)//过程中遇到结尾单词,前缀存在 is_end=true; } } if(!any) is_end=true; cur->flag=true; return is_end;}void deleTrie(Trie *L){ Trie *cur=L; for (int i=0; i
nxt[i]) deleTrie(cur->nxt[i]); delete cur;}char s[M];int main(void){ int tcase,n; scanf("%d",&tcase); while (tcase--) { bool flag=true; L=new Trie(); scanf("%d",&n); while (n--) { scanf("%s",s); if(flag) { if(update(s)) flag=false; } } puts(flag?"YES":"NO"); deleTrie(L); } return 0;}

转载于:https://www.cnblogs.com/Blackops/p/5911124.html

你可能感兴趣的文章
elementUI之通过指定 Table 组件的 row-class-name 属性来为 Table 中的某一行添加 class改变该行的颜色等样式。...
查看>>
小技巧
查看>>
深度学习图像配准 Image Registration: From SIFT to Deep Learning
查看>>
可分离卷积详解及计算量 Basic Introduction to Separable Convolutions
查看>>
CNN中各类卷积总结:残差、shuffle、空洞卷积、变形卷积核、可分离卷积等
查看>>
Mean Average Precision(mAP),Precision,Recall,Accuracy,F1_score,PR曲线、ROC曲线,AUC值,决定系数R^2 的含义与计算...
查看>>
win7 能ping通dns, 但无法解析域名
查看>>
centos 软件安装包下载网站
查看>>
nmap 端口扫描工具
查看>>
Excel vlookup筛选两列的重复项
查看>>
配置了BFD MAD, 在IRF正常情况下的 BFD状态是不是 down?
查看>>
SQL server 2012定期的备份数据库--完整+差异+事物
查看>>
C语言 - 可变参数再stm32中的应用
查看>>
vscode + platformIO开发stm32f4
查看>>
最新SSM框架整合2019
查看>>
LinkedList的线程安全解决办法
查看>>
eclipse调整控制台长度
查看>>
jsonp和ajax
查看>>
EAS 之F7控件实现多选择并保存
查看>>
eas之获取集合
查看>>