zoukankan      html  css  js  c++  java
  • POJ 3630

    题目链接:http://poj.org/problem?id=3630

    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

    题意:

    给你 $n$ 个字符串,让你确定其中是否有存在某个字符串是另一个字符串的前缀。

    AC代码:

    (通过OpenJ_Bailian - 3791OpenJ_Bailian - 4089

    #include<bits/stdc++.h>
    using namespace std;
    const int maxn=1e4+5;
    
    int n;
    string s[maxn];
    
    namespace Trie
    {
        const int SIZE=maxn*10;
        int sz;
        struct TrieNode{
            int ed;
            int nxt[10];
        }trie[SIZE];
        void init()
        {
            sz=1;
            memset(trie,0,sizeof(trie));
        }
        void insert(const string& s)
        {
            int p=1;
            for(int i=0;i<s.size();i++)
            {
                int ch=s[i]-'0';
                if(!trie[p].nxt[ch]) trie[p].nxt[ch]=++sz;
                p=trie[p].nxt[ch];
            }
            trie[p].ed++;
        }
        int prefix(const string& s)
        {
            int res=0,p=1;
            for(int i=0;i<s.size();i++)
            {
                p=trie[p].nxt[s[i]-'0'];
                res+=trie[p].ed;
                if(!p) return res;
            }
            return res;
        }
    };
    
    int main()
    {
        ios::sync_with_stdio(0);
        cin.tie(0); cout.tie(0);
    
        int T;
        cin>>T;
        while(T--)
        {
            cin>>n;
            Trie::init();
            for(int i=1;i<=n;i++) {
                cin>>s[i];
                Trie::insert(s[i]);
            }
    
            bool ok=1;
            for(int i=1;i<=n;i++) {
                if(Trie::prefix(s[i])>1) {
                    ok=0;
                    break;
                }
            }
            if(ok) cout<<"YES
    ";
            else cout<<"NO
    ";
        }
    }
  • 相关阅读:
    C#窗体操作的小技巧
    C#操作Xml
    Path类对路径字符串的操作
    Google Maps 基础
    C#时间操作总结
    根据地理坐标计算瓦片行列号
    使用VBA宏批量修改表格
    检测到在集成的托管管道模式下不适用的ASP.NET设置的解决方法
    Asp.net实现URL重写
    VS2013利用ajax访问不了json文件——VS2013配置webconfig识别json文件
  • 原文地址:https://www.cnblogs.com/dilthey/p/9962932.html
Copyright © 2011-2022 走看看