设为首页 加入收藏

TOP

POJ 题目3630 Phone List(字符串,水)
2015-07-20 17:13:08 来源: 作者: 【 】 浏览:2
Tags:POJ 题目 3630 Phone List 字符串
Phone List
Time Limit: 1000MS Memory Limit: 65536K
Total Submissions: 23729 Accepted: 7293

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

Nordic 2007 ac代码
#include
  
   
#include
   
     #include
    
      #include
     
       #define min(a,b) (a>b?b:a) struct str { char s[20]; }b[10010]; int cmp(const void *a,const void *b) { return strcmp((*(struct str *)a).s,(*(struct str *)b).s); } int n; int jud() { int i,j,k; for(i=0;i
      
       

】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
分享到: 
上一篇POJ 题目3164 Command Network(.. 下一篇HDU 5154 Harry and Magical Comp..

评论

帐  号: 密码: (新用户注册)
验 证 码:
表  情:
内  容:

·有没有哪些高效的c++ (2025-12-27 08:20:57)
·Socket 编程时 Accep (2025-12-27 08:20:54)
·计算机网络知识点总 (2025-12-27 08:20:52)
·一篇说人话的文章, (2025-12-27 07:50:09)
·Python Web框架哪家 (2025-12-27 07:50:06)