zoukankan      html  css  js  c++  java
  • UVA Phone List (字典树)(查询是否有前缀或自身是其他的前缀)

    Phone List
    Time Limit: 1000MS   Memory Limit: 65536K
    Total Submissions: 16341   Accepted: 5228

    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:

    • Emergency 911
    • Alice 97 625 999
    • 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

    Source

    【分析】字典树
     
    #include <iostream>
    #include <cstring>
    #include <cstdio>
    #include <cstring>
    #include <algorithm>
    #include <cmath>
    #include <time.h>
    #include <string>
    #include <map>
    #include <stack>
    #include <vector>
    #include <set>
    #include <queue>
    #define met(a,b) memset(a,b,sizeof a)
    #define pb push_back
    #define lson(x) ((x<<1))
    #define rson(x) ((x<<1)+1)
    using namespace std;
    typedef long long ll;
    const int N=10;
    const int M=1e6+10;
    typedef struct TrieNode {
        int endflag;
        struct TrieNode *next[N];
    } TrieNode;
    
    TrieNode Memory[M];
    int allocp=0;
    bool flag;
    
    void InitTrieRoot(TrieNode **pRoot) {
        *pRoot=NULL;
    }
    
    TrieNode *CreateTrieNode() {
        int i;
        TrieNode *p;
    
        p=&Memory[allocp++];
        p->endflag=0;
        for(i=0; i<N; i++) {
            p->next[i]=NULL;
        }
        return p;
    }
    
    void InsertTrie(TrieNode **pRoot,char *s) {
        int i,k;
        TrieNode *p;
    
        if(!(p=*pRoot))
            p=*pRoot=CreateTrieNode();
        i=0;
        while(s[i]) {
            k=s[i++]-'0';
            if(p->next[k]) {
                if(p->next[k]->endflag==1||s[i]=='') {
                    flag=false;
                    return;
                }
            } else p->next[k]=CreateTrieNode();
            p=p->next[k];
        }
        p->endflag=1;
    }
    
    int main() {
        char str[50];
        TrieNode *Root=NULL;
        int T;
        scanf("%d",&T);
        int n;
        while(T--) {
            flag=true;
            allocp=0;
            scanf("%d",&n);
            InitTrieRoot(&Root);
            for(int i=0; i<n; i++) {
                //gets(str);//用这个会超时
                scanf("%s",&str);
                if(flag) InsertTrie(&Root,str);
            }
            if(flag) printf("YES
    ");
            else printf("NO
    ");
        }
    
    
        return 0;
    }
  • 相关阅读:
    gitLab 全局hooks和custom_hooks,以及服务器端自动更新和备份(三)
    ORACLE的Copy命令和create table,insert into的比较
    计算机基础
    在C#应用中使用Common Logging日志接口
    数据库设计原则(转载)
    Oracle中函数如何返回结果集
    ORACLE时间常用函数(字段取年、月、日、季度)
    SQLServer2005 没有日志文件(*.ldf) 只有数据文件(*.mdf) 恢复数据库的方法
    sql server日期时间转字符串
    SQL Server删除用户失败的解决方法
  • 原文地址:https://www.cnblogs.com/jianrenfang/p/6384036.html
Copyright © 2011-2022 走看看