动物统计加强版
时间限制:
3000 ms | 内存限制:
150000 KB
难度:
4
-
描述
-
在美丽大兴安岭原始森林中存在数量繁多的物种,在勘察员带来的各种动物资料中有未统计数量的原始动物的名单。科学家想判断这片森林中哪种动物的数量最多,但是由于数据太过庞大,科学家终于忍受不了,想请聪明如你的ACMer来帮忙。
-
输入
-
第一行输入动物名字的数量N(1<= N <= 4000000),接下来的N行输入N个字符串表示动物的名字(字符串的长度不超过10,字符串全为小写字母,并且只有一组测试数据)。
输出
-
输出这些动物中最多的动物的名字与数量,并用空格隔开(数据保证最多的动物不会出现两种以上)。
样例输入
-
10 boar pig sheep gazelle sheep sheep alpaca alpaca marmot mole
样例输出
-
sheep 3
思路:
简单的字典树。。。
#include <stdio.h> #include <string.h> #include <stdlib.h> typedef struct Node { int cnt; Node *next[26]; }node; int max; char maxstr[11]; node *newnode() { node *p = (node *)malloc(sizeof(node)); for(int i = 0; i < 26; i++) { p->next[i] = NULL; } p->cnt = 0; return p; } int insert(node *root, char str[]) { node *p = root, *t; char *ts = str; int n; while(*ts != 0) { n = *ts - 'a'; if(p->next[n] == NULL) { t = newnode(); p->next[n] = t; } p = p->next[n]; ts++; } p->cnt++; if(p->cnt > max) { max = p->cnt; strcpy(maxstr, str); } return 0; } int main() { int n; char str[11]; node *root = newnode(); max = 0; scanf("%d", &n); for(int i = 0; i < n; i++) { scanf("%s", str); insert(root, str); } printf("%s %d\n", maxstr, max); return 0; }
-
第一行输入动物名字的数量N(1<= N <= 4000000),接下来的N行输入N个字符串表示动物的名字(字符串的长度不超过10,字符串全为小写字母,并且只有一组测试数据)。