A. Maximum Increase 题意:找 最长的 连续的严格上升的子序列,输出它的长度。 解题: 因为要求连续,所以一边扫一遍统计就可以。事后觉得我写的麻烦了些o(╯□╰)o。 B. Powers of Two 题意:给定长度为 n 的序列,找出有多少对数相加的和 属于 2 的 x 次幂 。 ...
分类:
其他好文 时间:
2016-07-30 21:11:45
阅读次数:
177
题意:给定 n 个数,问你连续的最长的序列是几个。 析:从头扫一遍即可。 代码如下: ...
分类:
编程语言 时间:
2016-07-30 10:35:50
阅读次数:
181
在nginx重启的时候报错了: nginx: [emerg] could not build the variables_hash, you should increase either variables_hash_max_size: 512 or variables_hash_bucket_si ...
分类:
其他好文 时间:
2016-07-13 20:29:12
阅读次数:
151
#coding=utf-8import randomimport timeimport datetime TIMESTART = '2016-06-04 10:00:01' #increase time, string to time, then add seconds you want, at l ...
分类:
编程语言 时间:
2016-06-30 12:24:32
阅读次数:
191
oracle中没有自增字段,可通过序列+触发器间接实现,cmd中sqlplus登录,直接运行即可。一般要经过一下几步: 1建立数据表 create table Test_Increase( userid number(10) primary key, /*主键,自动增加*/ username var ...
分类:
数据库 时间:
2016-06-16 19:51:30
阅读次数:
172
最长递增子子序列,这是动态规划里的经典问题了。 python代码如下 def get_max_increase_sequence1(a): # dp[i] = max{dp[j] | 0<=j<i,a[i]<a[j] } + 1 # O(n**2) num=len(a) dp=[0]*num for ...
分类:
编程语言 时间:
2016-06-10 06:10:36
阅读次数:
1358
这篇文章本来是在tcp那篇里面的,但是那篇太长了,不专一。就完善了一下提取出来了。TCP拥塞控制 拥塞控制讨论的是很多个同时存在的tcp连接应该怎么规划自己的数据包发送和接收速度,以在彼此之间共享带宽,同时与其他实体的机器公平的竞争带宽,而不是自己全占。
拥塞控制的核心是AIMD(additive-increase/multiplicative-decrease ),线...
分类:
系统相关 时间:
2016-05-30 15:34:09
阅读次数:
180
In a Lotto I have ever played, one has to select 6 numbers from the set {1,2,...,49}. A popular strategy to play Lotto - although it doesn't increase ...
分类:
其他好文 时间:
2016-05-18 23:34:16
阅读次数:
219
初级 The Newbie Routine Schedule:2 days ON / 1 day REST. Gradually increase to 10 min total of stretches and 30 min of jelqing over about 6 weeks time. ...
分类:
其他好文 时间:
2016-05-18 01:43:09
阅读次数:
268
Problem Description
As the increase of population, the living space for people is becoming smaller and smaller. In MagicStar the problem is much worse. Dr. Mathematica is trying to save land by cluste...
分类:
编程语言 时间:
2016-05-06 14:48:12
阅读次数:
189