Given a string array words, find the maximum value of length(word[i]) * length(word[j]) where the two words do not share common letters. You may assum ...
分类:
其他好文 时间:
2016-08-04 01:35:28
阅读次数:
173
RMQ(Range Minimum/Maximum Query)问题:RMQ问题是给定一个区间,求这个区间中的最大或最小值的问题 RMQ采用动态规划的思想来求解:(st算法:Square Table): 预处理:预处理使用DP的思想,f(i, j)表示[i, i+2^j - 1]区间中的最小值。 例 ...
分类:
其他好文 时间:
2016-08-03 23:49:07
阅读次数:
266
1、INFO: Maximum number of threads (200) created for connector with address null and port 8091 说明:最大线程数错误 解决方案: 使用线程池,用较少的线程处理较多的访问,可以提高tomcat处理请求的能力。使 ...
分类:
其他好文 时间:
2016-08-02 20:57:13
阅读次数:
142
Description: Given a sequence of K integers { N1, N2, ..., NK }. A continuous subsequence is defined to be { Ni, Ni+1, ..., Nj } where 1 <= i <= j <= ...
分类:
其他好文 时间:
2016-08-02 19:05:55
阅读次数:
204
Given a positive integer n, break it into the sum of at least two positive integers and maximize the product of those integers. Return the maximum pro ...
分类:
其他好文 时间:
2016-08-02 00:54:08
阅读次数:
161
<metaname="viewport"content="width=device-width,initial-scale=1.0,minimum-scale=0.5,maximum-scale=2.0,user-scalable=yes"/>在网页的<head>中增加以上这句话,可以让网页的宽度自动适应手机屏幕的宽度。其中:width=device-width:表示宽度是设备屏幕的宽度h..
分类:
Web程序 时间:
2016-08-01 23:32:31
阅读次数:
248
Find out the maximum sub-array of non negative numbers from an array.The sub-array should be continuous. That is, a sub-array created by choosing the ...
分类:
其他好文 时间:
2016-08-01 10:41:27
阅读次数:
222
Given a binary tree, find its maximum depth. The maximum depth is the number of nodes along the longest path from the root node down to the farthest l ...
分类:
其他好文 时间:
2016-07-31 20:36:47
阅读次数:
90
A题 Maximum Increase 大水题。最长连续递增子序列有多长。 B题 Powers of Two 这道题有点意思昂,问你有几对,满足巴拉巴拉。 先说一下一开始吧,我的做法是直接暴力两重for循环去做,明显TLE了。一开始没注意n²。 然后想啊,这TLE咋办,咱剪枝吧。个么,就加了一下这几 ...
分类:
其他好文 时间:
2016-07-31 17:18:36
阅读次数:
180
A. Maximum Increase 题意:找 最长的 连续的严格上升的子序列,输出它的长度。 解题: 因为要求连续,所以一边扫一遍统计就可以。事后觉得我写的麻烦了些o(╯□╰)o。 B. Powers of Two 题意:给定长度为 n 的序列,找出有多少对数相加的和 属于 2 的 x 次幂 。 ...
分类:
其他好文 时间:
2016-07-30 21:11:45
阅读次数:
177