首页 > 代码库 > HDU 1004 Let the Balloon Rise
HDU 1004 Let the Balloon Rise
字典树(Trie)
题意是说找出最多的颜色。也就是找出出现次数最多的单词。
插入,然后遍历一遍把最多的输出就可以。
#include<cstdio> #include<cstring> #include<string> #include<queue> #include<algorithm> #include<map> #include<stack> #include<iostream> #include<list> #include<set> #include<cmath> #define INF 0x7fffffff #define eps 1e-6 #define LL long long using namespace std; struct Trie { int word[1000][26]; int sz,cot; int ex[1000*10]; char love[10010][16]; void intTrie() { sz=1; cot=1; memset(word,0,sizeof(word)); memset(ex,0,sizeof(ex)); } void insert(char *s) { int u=0,c,len=strlen(s); for(int i=0; i<len; i++) { c=s[i]-'a'; if(!word[u][c]) word[u][c]=sz++; u=word[u][c]; } ex[u]++; strcpy(love[u],s); //return ex[u]; } void fina() { int m=0; char tmp[16]; for(int i=0;i<10010;i++) { if(ex[i]>m) { m=ex[i]; strcpy(tmp,love[i]); } } puts(tmp); } }wo; int main() { int n; while(scanf("%d",&n),n) { char str[16]; int cot=0; wo.intTrie(); for(int i=0;i<n;i++) { scanf("%s",str); wo.insert(str); } wo.fina(); } }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。