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
POJ 2559--Largest Rectangle in a Histogram(栈模拟)
1
//
栈模拟---157ms
2
//
更好的方法,也许是DP吧
3
4
#include
<
cstdio
>
5
6
const
int
SIZE
=
100001
;
7
8
struct
STACK
9
{
10
__int64 ht ;
11
int
pos ;
12
}
;
13
14
STACK stack[SIZE] ;
15
int
top ;
16
17
int
N ;
18
__int64 height[SIZE] ;
19
20
__int64 GetMaxArea()
21
{
22
__int64 ans , temp ;
23
int
i ;
24
25
top
=
0
;
26
27
stack[top].ht
=
height[
0
] ;
28
stack[top].pos
=
0
;
29
ans
=
height[
0
] ;
30
height[N]
=
0
;
31
32
for
( i
=
1
; i
<=
N ;
++
i )
33
{
34
if
( height[i]
<=
stack[top].ht )
35
{
36
while
( top
>=
0
&&
height[i]
<=
stack[top].ht )
37
{
38
temp
=
stack[top].ht
*
(i
-
stack[top].pos) ;
39
40
if
( temp
>
ans )
41
ans
=
temp ;
42
43
top
--
;
44
}
45
top
++
;
46
stack[top].ht
=
height[i] ;
47
}
48
else
{
49
stack[
++
top].ht
=
height[i] ;
50
stack[top].pos
=
i ;
51
}
52
}
53
54
return
ans ;
55
}
56
57
int
main()
58
{
59
//
freopen("1.txt", "r", stdin) ;
60
61
int
i ;
62
63
while
( scanf(
"
%d
"
,
&
N)
&&
N
!=
0
)
64
{
65
for
( i
=
0
; i
<
N ;
++
i )
66
{
67
scanf(
"
%I64d
"
,
&
height[i]) ;
68
}
69
70
__int64 ans
=
GetMaxArea() ;
71
72
printf(
"
%I64d\n
"
, ans) ;
73
}
74
75
return
0
;
76
}
posted on 2009-03-05 23:17
巫
阅读(617)
评论(3)
编辑
收藏
引用
所属分类:
DP
评论
#
re: POJ 2559--Largest Rectangle in a Histogram(栈模拟)[未登录]
2009-07-02 12:26
xc
如果输入的测试数据是 2 1 10
你的代码输出是 1
可正确的输出应该是 10
回复
更多评论
#
re: POJ 2559--Largest Rectangle in a Histogram(栈模拟)[未登录]
2009-07-02 12:32
xc
48 else {
if (height[i] > ans)
ans = height[i] ;
49 stack[++top].ht = height[i] ;
50 stack[top].pos = i ;
51 }
回复
更多评论
#
re: POJ 2559--Largest Rectangle in a Histogram(栈模拟)[未登录]
2009-07-02 12:39
xc
不好意思没看见“ height[N] = 0 ;”这句话
回复
更多评论
刷新评论列表
只有注册用户
登录
后才能发表评论。
【推荐】100%开源!大型工业跨平台软件C++源码提供,建模,组态!
相关文章:
7th GDCPC Problem G: Black Jack
ZOJ 3187--Inviting Friends
zoj 3201 Tree of tree
POJ 3211 Washing Clothes
POJ 3254 Corn Fields
POJ 3670 Eating Together(最长非递增(非递减)子序列)
POJ 3661-Running
Pku 3494--Largest Submatrix of All 1’s(路径压缩)
PKU 1964--City Game(栈模拟)
POJ 2559--Largest Rectangle in a Histogram(栈模拟)
网站导航:
博客园
IT新闻
BlogJava
知识库
博问
管理
Powered by:
C++博客
Copyright © 巫