题目:Given n non-negative integers representing the histogram's bar height where the width of each bar is 1, find the area of largest rectangle in the ....
分类:
编程语言 时间:
2014-07-26 09:53:57
阅读次数:
273
hdu1506:http://acm.hdu.edu.cn/showproblem.php?pid=1506题意:给你一些直的的方块,这些方块的底部在同一条直线上,但是高度不一样,让你找一个最大的方块,这个方块是由这些矩阵拼起来的。题解:自己太渣了,完全不会这一题怎么写,发现自己的思维能力太弱了,根...
分类:
其他好文 时间:
2014-07-26 01:21:47
阅读次数:
237
链接:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=453Time Limit:2 Seconds Memory Limit:65536 KBThere are a lot of trees in an area. A peas...
分类:
其他好文 时间:
2014-07-26 00:23:16
阅读次数:
351
python的元组、列表、字典数据类型是很python(there python is aadjective)的数据结构。这些结构都是经过足够优化后的,所以如果使用好的话,在某些area会有很大的益处。元组 个人认为就像java的数组,python中的元组有以下特性:任意对象的有序集合,这条没啥说的...
分类:
编程语言 时间:
2014-07-25 14:01:01
阅读次数:
246
Given a 2D binary matrix filled with 0's and 1's, find the largest rectangle containing all ones and return its area.题解,很巧妙的一道题,对于一个0-1矩阵,它的每一行及以上都可以看...
分类:
其他好文 时间:
2014-07-25 10:53:01
阅读次数:
292
Givennnon-negative integers representing the histogram's bar height where the width of each bar is 1, find the area of largest rectangle in the histog...
分类:
其他好文 时间:
2014-07-24 22:39:53
阅读次数:
252
- - - - 读取上面XMl,获取某一个区的值,代码如下XmlNode node = xmlDoc.SelectSingleNode("area/province[@p...
分类:
其他好文 时间:
2014-07-24 12:09:55
阅读次数:
137
Administration of the labyrinth has decided to start a new season with new wallpapers. For this purpose they need a program to calculate the surface area of the walls inside the labyrinth. This job
...
分类:
其他好文 时间:
2014-07-23 22:32:07
阅读次数:
292
本章提要--------------------------------------------------SGA: System Global Area ( 包括background process)PGA: Process Global Area 进程或线程专用内存UGA: User Globa...
分类:
其他好文 时间:
2014-07-23 20:35:45
阅读次数:
235
http://acm.hdu.edu.cn/showproblem.php?pid=1506就是对一个点向左向右知道找到高度比它低的点然后记录在左右两个数组里面,再dp处理。 1 #include 2 #include 3 #include 4 #define maxn 200000 5 #d...
分类:
其他好文 时间:
2014-07-23 16:12:21
阅读次数:
244