DP
文章平均质量分 83
威萌
这个作者很懒,什么都没留下…
展开
-
A - DP入门
A - DP入门Time Limit:1000MS Memory Limit:32768KB 64bit IO Format:%I64d & %I64uSubmit StatusDescription在讲述DP算法的时候,一个经典的例子就是数塔问题,它是这样描述的: 有如下所示的数塔,要求从顶层走到底层,若每一步只能走到相邻的结点,则原创 2014-07-22 14:32:06 · 528 阅读 · 0 评论 -
DP算法入门
描述A subsequence of a given sequence is the given sequence with some elements (possible none) left out. Given a sequence X = another sequence Z = is a subsequence of X if there exists a strictly原创 2014-07-22 14:26:23 · 805 阅读 · 0 评论 -
D - LIS
D - LISTime Limit:1000MS Memory Limit:32768KB 64bit IO Format:%I64d & %I64uSubmit StatusDescriptionNowadays, a kind of chess game called “Super Jumping! Jumping! Jumping!” is原创 2014-07-22 17:03:30 · 881 阅读 · 0 评论 -
枚举
S - 不要62Time Limit:1000MS Memory Limit:32768KB 64bit IO Format:%I64d & %I64uSubmit StatusDescription杭州人称那些傻乎乎粘嗒嗒的人为62(音:laoer)。 杭州交通管理局经常会扩充一些的士车牌照,新近出来一个好消息,以后上牌照,不再含有不吉利的原创 2014-08-07 14:58:44 · 463 阅读 · 0 评论 -
子序列个数
N - 子序列个数Time Limit:2000MS Memory Limit:32768KB 64bit IO Format:%I64d & %I64uSubmit StatusDescription子序列的定义:对于一个序列a=a[1],a[2],......a[n]。则非空序列a'=a[p1],a[p2]......a[pm]为a的一个原创 2014-08-07 10:13:32 · 527 阅读 · 0 评论 -
DP算法
-----线型动态规划 f[i,j]:=min(f[i,j],f[i+1,j-1] (s[i]s[j]=”()”or(”[]”)),f[i+1,j+1]+1 (s[j]=”(”or”[” ) , f[i,j-1]+1(s[j]=”)”or”]”); 74 棋盘切割 -----线型动态规划 f[k,x1,y1,x2,y2]=min{min原创 2014-08-08 16:16:42 · 9340 阅读 · 0 评论