hdu Phone List (字典樹)
阿新 • • 發佈:2019-02-04
Phone List
Time Limit : 3000/1000ms (Java/Other) Memory Limit : 32768/32768K (Java/Other)
Total Submission(s) : 4 Accepted Submission(s) : 3
Font: Times New Roman | Verdana | Georgia
Font Size: ← →
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
Output
Sample Input
2 3 911 97625999 91125426 5 113 12340 123440 12345 98346
Sample Output
NO YES
Source
2008 “Insigma International Cup” Zhejiang Collegiate Programming Contest - Warm Up(3) 水題不解釋#include <stdio.h> #include <string.h> int cnt; char phonum[10005][15]; struct Node{ int next[10]; int flag; } tree[100000]; void Insert(char *s){ int p = 0; while(*s){ if(tree[p].next[*s - '0'] == -1){ tree[p].next[*s - '0'] = cnt; cnt++; } p = tree[p].next[*s - '0']; s++; } tree[p].flag = 1; } int Query(char *s){ int p = 0; while(*s){ if(tree[p].flag == 1){ return 0; } else{ p = tree[p].next[*s - '0']; } s++; } return 1; } int main (){ int i,T,n; int flag; scanf("%d",&T); while(T--){ flag = 1; cnt = 1; for(i = 0;i < 100000;i++){ memset(tree[i].next,-1,sizeof(tree[i].next)); tree[i].flag = 0; } for(i = 0 ;i < 10005;i++){ memset(phonum[i],'\0',sizeof(phonum[i])); } scanf("%d",&n); for(i = 0;i < n;i++){ scanf("%s",phonum[i]); Insert(phonum[i]); } for(i = 0;i < n;i++){ if(Query(phonum[i]) == 0){ flag = 0; } } if(flag == 0){ printf("NO\n"); } else{ printf("YES\n"); } } return 0; }