Dreams
hdu 1251 统计难题
http://acm.hdu.edu.cn/showproblem.php?pid=1251
#include
<
iostream
>
using
namespace
std;
struct
dictree
{
struct
dictree
*
child[
26
];
int
num;
}
;
int
main()
{
int
i;
char
word[
11
];
struct
dictree root;
//
= new dictree;
for
(i
=
0
;i
<
26
;i
++
)
root.child[i]
=
NULL;
root.num
=
0
;
while
(cin.getline(word,
11
),word[
0
])
//
输入方法很niu
{
struct
dictree
*
now
=
&
root;
char
*
tmp
=
word;
while
(
*
tmp)
{
if
(now
->
child[
*
tmp
-
'
a
'
]
==
NULL)
{
now
->
child[
*
tmp
-
'
a
'
]
=
new
dictree;
now
=
now
->
child[
*
tmp
-
'
a
'
];
for
(i
=
0
;i
<
26
;i
++
)
now
->
child[i]
=
NULL;
now
->
num
=
1
;
}
else
{
now
=
now
->
child[
*
tmp
-
'
a
'
];
now
->
num
++
;
}
tmp
++
;
}
}
while
(cin.getline(word,
11
),cin
&&
word[
0
])
{
int
mins
=
100000
;
struct
dictree
*
now
=
&
root;
char
*
tmp
=
word;
while
(
*
tmp)
{
now
=
now
->
child[
*
tmp
-
'
a
'
];
if
(
!
now)
{
mins
=
0
;
break
;
}
if
(now
->
num
<
mins)
mins
=
now
->
num;
tmp
++
;
}
cout
<<
mins
<<
endl;
}
return
0
;
}
发表于 2009-04-09 14:17
DreamSky
阅读(354)
评论(0)
编辑
收藏
引用
所属分类:
字典树
只有注册用户
登录
后才能发表评论。
【推荐】100%开源!大型工业跨平台软件C++源码提供,建模,组态!
相关文章:
hdu 1298 T9
hdu 1075 What Are You Talking About
hdu 1251 统计难题
hdu 1800 Flying to the Mars
网站导航:
博客园
IT新闻
BlogJava
知识库
博问
管理
<
2009年4月
>
日
一
二
三
四
五
六
29
30
31
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
1
2
3
4
5
6
7
8
9
公告
导航
C++博客
首页
发新随笔
发新文章
联系
聚合
管理
统计
随笔: 84
文章: 7
评论: 49
引用: 0
常用链接
我的随笔
我的评论
我参与的随笔
留言簿
(6)
给我留言
查看公开留言
查看私人留言
随笔分类
asp相关(3)
(rss)
BFS(8)
(rss)
DFS(7)
(rss)
DP(27)
(rss)
greedy(9)
(rss)
LG(4)
(rss)
Math(7)
(rss)
Others(6)
(rss)
并查集(4)
(rss)
母函数(7)
(rss)
线段树
(rss)
字典树(4)
(rss)
随笔档案
2009年8月 (3)
2009年5月 (17)
2009年4月 (60)
2009年3月 (4)
文章分类
创作(1)
(rss)
随感(5)
(rss)
文学(1)
(rss)
文章档案
2010年12月 (1)
2010年8月 (1)
2009年8月 (1)
2009年5月 (1)
2009年4月 (3)
相册
乌镇
原野天地
百事百通
analogy_翻译_爱词霸在线词典
bia菜
CSS学习资料
DB
Feng
Happy峰
Wpl
Xredman
百度
北大ACM
福建师范大学ACM
谷歌
果树伯伯
杭电ACM
湖州师范学院主页
精品笑话
绿色软件
史艳婷
霜天晓角
天津大学ACM
厦门大学ACM
信息学竞赛
这是什么
浙大ACM
浙江工商大学ACM
浙江工业大学ACM
浙江林学院ACM
搜索
积分与排名
积分 - 46215
排名 - 474
最新评论
1. re: hdu 1074 Doing Homework
评论内容较长,点击标题查看
--guo
阅读排行榜
1. hdu 1171 Big Event in HDU(1765)
评论排行榜
1. hdu 1171 Big Event in HDU(9)