Problem Statement
You have a rectangular board that is placed vertically. The board is divided into a grid of unit square cells. Some grid cells contain obstacles and some cells contain a...
分类:
其他好文 时间:
2015-06-15 00:19:35
阅读次数:
113
原题
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 histogram.
Above is a histogram where...
分类:
其他好文 时间:
2015-06-14 18:36:43
阅读次数:
102
【重要的事情写在前面】先来说说swap的实现方式,这道题我本来自己写了个swap的算法,除了通常的swap(type& a, type& b){ type t = a; a = b; b = a;}的写法外,还有一种【极客】写法:swap(type& a, type& b){ a ^= b;...
分类:
其他好文 时间:
2015-06-14 15:06:14
阅读次数:
131
Red and BlackTime Limit:1000MSMemory Limit:30000KTotal Submissions:25228Accepted:13605DescriptionThere is a rectangular room, covered with square tile...
分类:
其他好文 时间:
2015-06-14 15:02:56
阅读次数:
114
Find the contiguous subarray within an array (containing at least one number) which has the largest product.
For example, given the array [2,3,-2,4],
the contiguous subarray [2,3] has the largest ...
分类:
其他好文 时间:
2015-06-14 13:50:36
阅读次数:
91
Find the kth largest element in an unsorted array. Note that it is the kth largest element in the sorted order, not the kth distinct element.For example,
Given[3,2,1,5,6,4]and k = 2, return 5.Note:...
分类:
其他好文 时间:
2015-06-14 09:34:25
阅读次数:
120
Largest NumberGiven a list of non negative integers, arrange them such that they form the largest number.For example, given[3, 30, 34, 5, 9], the larg...
分类:
编程语言 时间:
2015-06-14 08:12:00
阅读次数:
154
题目链接 题目要求: Find the contiguous subarray within an array (containing at least one number) which has the largest product. For example, given the ar...
分类:
其他好文 时间:
2015-06-12 11:29:03
阅读次数:
100
题目链接 题目要求: Find the contiguous subarray within an array (containing at least one number) which has the largest sum. For example, given the array[...
分类:
其他好文 时间:
2015-06-11 21:13:17
阅读次数:
105
SRM 1462500RectangularGridProblem StatementGiven thewidthandheightof a rectangular grid, return the total number of rectangles (NOT counting squares) ...
分类:
其他好文 时间:
2015-06-11 16:16:18
阅读次数:
144