GETTING STARTED WITH BRACKETS Bob Marcio Eric ...
分类:
其他好文 时间:
2015-10-18 18:08:41
阅读次数:
166
GETTING STARTED WITH BRACKETS The Uses of font-variant On the Web The property font...
分类:
其他好文 时间:
2015-10-17 09:26:03
阅读次数:
209
Question:Given a string containing just the characters'(',')','{','}','['and']', determine if the input string is valid.The brackets must close in the...
分类:
其他好文 时间:
2015-10-12 21:08:00
阅读次数:
232
题意:给你一个括号序列(有中小括号),求出以给定序列为子序列的最小合法括号序列。分析:非常经典,以前做过相似一道题,用区间dp,但怎么把这个序列求出来没想出来。dp[i][j]表示区间i-j是序列合法要增加括号的最小数量,并pos[i][j]表示i-j在哪个位置断开最小,最后通过递归位置打印出答案。...
分类:
其他好文 时间:
2015-10-12 18:59:02
阅读次数:
118
[Problem]Given a string containing just the characters'(',')','{','}','['and']', determine if the input string is valid.The brackets must close in the...
分类:
其他好文 时间:
2015-10-10 00:27:18
阅读次数:
177
题意:就是数有一个字符串中有多少括号匹配:① ()算两种,② [ ] 算两种题解: 和 LightOj 那道题一样 F[ i ][ j ] = max(F[ i + 1][ j ], F[ i + 1][ k - 1] + F[ k ][ j ] + 2) {i + 1 #include #de.....
分类:
其他好文 时间:
2015-10-08 21:37:53
阅读次数:
211
Brackets SequenceTime Limit: 1000MSMemory Limit: 65536KTotal Submissions: 27793Accepted: 7885Special JudgeDescriptionLet us define a regular brackets ...
分类:
其他好文 时间:
2015-10-04 01:32:02
阅读次数:
215
推荐在Brackets安装"LESS AutoCompile"插件,当保存less文件会自动生成或保存相应的css文件。 变量 以@开头声明变量,并且对变量进行分类,比如颜色变量、字体大小变量、模版变量、布局变量,等等。比如: @fontSize:#000; 嵌套 hello .container{...
分类:
其他好文 时间:
2015-09-30 12:33:39
阅读次数:
141
题意: 给一个合法的括号序列,仅含()这两种。现在要为每对括号中的其中一个括号上色,有两种可选:蓝or红。要求不能有两个同颜色的括号相邻,问有多少种染色的方法?思路: 这题的模拟成分比较多吧?两种颜色还有无色,用2个bit就可以表示了。然后就是各种转移,注意结果可能非常大,要取模后输出。转移主要.....
分类:
其他好文 时间:
2015-09-27 12:27:16
阅读次数:
207
Adobe的Brackets编辑器体验非常不错,在Ubuntu下安装却遇到问题。 从官方下载的deb安装包,安装失败,提示依赖错误: dpkg:?依赖关系问题使得?brackets?的配置工作不能继续:
brackets?依赖于?libgcrypt11?...
分类:
系统相关 时间:
2015-09-26 10:43:21
阅读次数:
253