gzwzm06
C++博客
::
首页
::
新随笔
::
联系
::
聚合
::
管理
::
1 随笔 :: 52 文章 :: 17 评论 :: 0 Trackbacks
<
2024年11月
>
日
一
二
三
四
五
六
27
28
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
常用链接
我的随笔
我的评论
我参与的随笔
留言簿
(3)
给我留言
查看公开留言
查看私人留言
随笔档案
2009年5月 (1)
文章分类
DP(12)
(rss)
Hash应用(4)
(rss)
几何(1)
(rss)
模拟题(2)
(rss)
数据结构(12)
(rss)
数学(2)
(rss)
搜索(2)
(rss)
图论(7)
(rss)
与Tree相关的题(2)
(rss)
字符串处理(8)
(rss)
文章档案
2009年5月 (8)
2009年4月 (5)
2009年3月 (14)
2008年11月 (20)
2008年10月 (5)
搜索
最新评论
1. re: Pku 2774--Long Long Message(后缀树)
求教大牛,那个Lt属性是记录什么的
--dereky
2. re: POJ 2481(树状数组)
@gzwzm06
哦,实在是不好意思,确实是那个地方,现在过了,谢谢了啊。
--Klion
3. re: POJ 2481(树状数组)
你再检查下,cc[j].m_e == cc[j].m_e这个条件肯定是真的,没有意义吧
--gzwzm06
4. re: POJ 2481(树状数组)
@gzwzm06
两个相同一起比较也就是两个区间是一样的,起点和终点是相同的,和您的第80行比较的应该是一样的吧?
--Klion
5. re: POJ 2481(树状数组)
评论内容较长,点击标题查看
--gzwzm06
Pku 2513--Colored Sticks(Trie)
Trie + 并查集
#include
<
stdio.h
>
#include
<
cstring
>
const
int
MAXN
=
600002
;
int
father[MAXN] ;
int
degree[MAXN] ;
int
N ;
int
FindSet(
int
x )
{
int
t , y ;
t
=
father[x] ;
y
=
x ;
while
( t
!=
father[t] ) t
=
father[t] ;
while
( x
!=
t )
{
y
=
father[x] ;
father[x]
=
t ;
x
=
y ;
}
return
t ;
}
void
UnionSet(
int
x,
int
y )
{
int
u
=
FindSet(x) ;
int
v
=
FindSet(y) ;
father[v]
=
u ;
}
const
int
CAP
=
26
;
typedef
struct
NODE
{
NODE()
{
cnt
=
0
;
id
=
0
;
memset(next, NULL,
sizeof
(NODE));
}
;
NODE
*
next[CAP];
int
cnt;
int
id;
}
NODE;
const
int
MEMORY
=
600001
;
//
节点数目
NODE memory[MEMORY] ;
class
BTree
{
public
:
BTree()
{
index
=
1
;
id_index
=
0
;
head
=
&
memory[
0
];
}
//
插入单词(返回单词ID)
int
insert(
char
*
str)
{
int
len
=
(
int
)strlen(str);
NODE
*
pt
=
head;
for
(
int
i
=
0
; i
<
len;
++
i)
{
if
(pt
->
next[str[i]
-
'
a
'
]
==
NULL)
{
pt
->
next[str[i]
-
'
a
'
]
=
&
memory[index
++
];
}
pt
=
pt
->
next[str[i]
-
'
a
'
];
}
if
(pt
->
cnt
==
0
)
pt
->
id
=
id_index
++
;
(pt
->
cnt)
++
;
//
单词累加一
return
pt
->
id;
}
public
:
NODE
*
head;
int
index;
//
内存索引
int
id_index;
//
单词ID索引
}
;
void
Init()
{
int
i ;
for
( i
=
0
; i
<
MAXN ; i
++
)
{
father[i]
=
i ;
degree[i]
=
0
;
}
}
int
main()
{
char
str1[
12
], str2[
12
] ;
BTree trie ;
int
x , y , num , i ;
Init() ;
//
freopen("1.txt", "r", stdin) ;
while
( scanf(
"
%s %s
"
,
&
str1,
&
str2)
!=
EOF )
{
x
=
trie.insert( str1 ) ;
y
=
trie.insert( str2 ) ;
degree[x]
++
;
degree[y]
++
;
UnionSet( x, y ) ;
}
num
=
trie.id_index ;
bool
con
=
true
;
if
( num
==
0
)
{
printf(
"
Possible\n
"
) ;
}
else
{
x
=
FindSet(
0
) ;
for
( i
=
1
; i
<
num ; i
++
)
{
y
=
FindSet( i ) ;
if
( x
!=
y )
{
con
=
false
;
break
;
}
}
if
(
!
con )
{
printf(
"
Impossible\n
"
) ;
}
else
{
x
=
0
;
for
( i
=
0
; i
<
num ; i
++
)
{
if
( degree[i]
%
2
!=
0
)
x
++
;
}
if
( x
==
2
||
x
==
0
)
{
printf(
"
Possible\n
"
) ;
}
else
{
printf(
"
Impossible\n
"
) ;
}
}
}
return
0
;
}
posted on 2008-11-08 15:50
巫
阅读(414)
评论(2)
编辑
收藏
引用
所属分类:
字符串处理
评论
#
re: Pku 2513--Colored Sticks(Trie)
2009-02-11 17:20
LC
请问一下
pt->next[str[i]-'a'] = &memory[index++];
memory是用来保存什么啊
这句什么意思啊?
本人不太熟练指针有望指教啊!
回复
更多评论
#
re: Pku 2513--Colored Sticks(Trie)[未登录]
2009-08-21 15:42
tom
memory 就一数组啊
回复
更多评论
刷新评论列表
只有注册用户
登录
后才能发表评论。
【推荐】100%开源!大型工业跨平台软件C++源码提供,建模,组态!
相关文章:
POJ 2408--Anagram Groups
Pku 3080--Blue Jeans(暴力枚举 + KMP)
Pku 3630--Phone List(Trie)
Pku 2503--Babelfish(Trie)
Pku 1816--Wild Words(Trie + DFS)
Pku 2513--Colored Sticks(Trie)
Pku 2774--Long Long Message(后缀数组)
Pku 2774--Long Long Message(后缀树)
网站导航:
博客园
IT新闻
BlogJava
知识库
博问
管理
Powered by:
C++博客
Copyright © 巫