博弈,一般就是,sg啊,dfs极大极小搜索啊,dp啊,找规律啊....HDU 1847 Good Luck in CET-4 Everybody!(SG水题)预处理一下,不然会RE。HDU 4559涂色游戏这个题,非常棒...看了别人的思路,n个1个格子的sg为n%2,我们利用sg函数处理出2*i的...
分类:
其他好文 时间:
2014-06-28 19:36:18
阅读次数:
295
一.劣币驱逐良币(英语:Bad money drives out good),也称作格雷欣法则或格勒善定律(Gresham's Law),是一个经济学定律。托马斯·格雷欣为16世纪的英国伊丽莎白铸币局长,格雷欣观察到,消费者保留储存成色高的货币(undebased money,贵金属含量高),在市面...
分类:
其他好文 时间:
2014-06-28 19:19:36
阅读次数:
221
If you feel like crying you shouldn’t hold back your tears. You should let it all out while you still can, because when you get bigger sometimes you ....
分类:
其他好文 时间:
2014-06-24 14:53:38
阅读次数:
255
给一个原串,以及那些字符是坏的,现在问你可以从原串中取出多少个不同子串,使得其所含的坏字符的个数不超过一个定数。这个题目网上有各种各样的解法。如hash,tire。我说一下我的解法。解法一:后缀自动机dp。f[][]保存到达某个状态,前面已经有的坏字符的个数的时候的字符串数量。这样按照拓扑序列一直递...
分类:
其他好文 时间:
2014-06-24 14:14:07
阅读次数:
169
According to the order of data structure book, Arrays should be introduced in the frist time. When reviewing the some information related to arrays, I feel shocked that many useful classes and methods...
分类:
编程语言 时间:
2014-06-22 18:13:18
阅读次数:
316
Reverse digits of an integer.
Example1: x = 123, return 321
Example2: x = -123, return -321
Have you thought about this?
Here are some good questions to ask before coding. Bonus points for y...
分类:
其他好文 时间:
2014-06-22 09:31:16
阅读次数:
220
好的,废话不多说,接着上篇来.
变量(variables)
始终使用 var 关键字来定义变量,如果不这样将会导致 变量全局化,造成污染.
//bad
superPower = new SuperPower();
//good
var superPower = new SuperPower();
使用 一个 var关键字来定义多个变量...并且每个变量一行..
// bad...
分类:
编程语言 时间:
2014-06-21 22:00:20
阅读次数:
259
When you find yourself calling the same function and passing mostly the same parameters, then the function is probably a good candidate for currying. ...
分类:
编程语言 时间:
2014-06-21 00:20:34
阅读次数:
297
Reverse digits of an integer.Example1: x = 123, return 321 Example2: x = -123, return -321Have you thought about this?Here are some good questions to ...
分类:
其他好文 时间:
2014-06-17 20:06:14
阅读次数:
205
感谢微信平台---一天一道算法题---每天多一点进步这题 我都懒得贴了....因为 很巧合的是 我已经做过他了 我也详细地讲过自己的 颠沛 做这题时要是 感兴趣 可以去找下 我的随笔 -- 前面的记录a good news ---- 昨晚和晓爷 一起看的那个 蛮有意思的阶乘AC了 但还有个关于阶乘 ...
分类:
其他好文 时间:
2014-06-17 14:10:15
阅读次数:
160