Shortest Prefixes

来源:互联网 发布:搞笑视频软件下载 编辑:程序博客网 时间:2024/06/06 09:56

2:Shortest Prefixes

  • 查看
  • 提交
  • 统计
  • 提问
总时间限制: 
1000ms 
内存限制: 
65536kB
描述
A prefix of a string is a substring starting at the beginning of the given string. The prefixes of "carbon" are: "c", "ca", "car", "carb", "carbo", and "carbon". Note that the empty string is not considered a prefix in this problem, but every non-empty string is considered to be a prefix of itself. In everyday language, we tend to abbreviate words by prefixes. For example, "carbohydrate" is commonly abbreviated by "carb". In this problem, given a set of words, you will find for each word the shortest prefix that uniquely identifies the word it represents. 

In the sample input below, "carbohydrate" can be abbreviated to "carboh", but it cannot be abbreviated to "carbo" (or anything shorter) because there are other words in the list that begin with "carbo". 

An exact match will override a prefix match. For example, the prefix "car" matches the given word "car" exactly. Therefore, it is understood without ambiguity that "car" is an abbreviation for "car" , not for "carriage" or any of the other words in the list that begins with "car". 
输入
The input contains at least two, but no more than 1000 lines. Each line contains one word consisting of 1 to 20 lower case letters.
输出
The output contains the same number of lines as the input. Each line of the output contains the word from the corresponding line of the input, followed by one blank space, and the shortest prefix that uniquely (without ambiguity) identifies this word.
样例输入
carbohydratecartcarburetorcaramelcariboucarboniccartilagecarboncarriagecartoncarcarbonate
样例输出
carbohydrate carbohcart cartcarburetor carbucaramel caracaribou caricarbonic carbonicartilage carticarbon carboncarriage carrcarton cartocar carcarbonate carbona
来源
Rocky Mountain 2004

#include<iostream>#include<cmath>#include<cstring>#include<algorithm>#include<iomanip>#include<queue>#include<stack>#include<vector>#include<set>#include<map>using namespace std;string s[1005];int num=0;struct Node{int cnt;Node*Child[26];Node(){cnt=0;memset(Child,0,sizeof(Child));}};Node*root;int main(){root=new Node();while(cin>>s[num]){int len=s[num].length();Node*p=root;for(int i=0;i<len;++i){if(p->Child[s[num][i]-'a']==NULL){p->Child[s[num][i]-'a']=new Node();}p=p->Child[s[num][i]-'a'];p->cnt++;}num++;}for(int i=0;i<num;++i){cout<<s[i]<<" ";int len=s[i].length();Node*p=root;for(int j=0;j<len;++j){if(j==len-1){cout<<s[i]<<endl;break;}p=p->Child[s[i][j]-'a'];if(p->cnt==1){cout<<s[i].substr(0,j+1)<<endl;break;}}}return 0;}