Problem A. Poetry ChallengeTime Limit: 1 SecMemory Limit: 256 MB题目连接http://codeforces.com/gym/100500/attachmentsDescriptionLet’s check another challen...
分类:
其他好文 时间:
2015-07-30 01:57:49
阅读次数:
145
最近开始用Openerp进行开发,在python语言本身上并没有什么太大的进展,于是决定利用空闲时间做一点python练习。 最终找到了这款叫做Python Challenge(http://www.pythonchallenge.com)的编程游戏。 这款游戏年代十分久远了,不过据说题目难度到后....
分类:
编程语言 时间:
2015-07-28 17:20:01
阅读次数:
156
题解:暴力dfs,如果有一个选择,能让对手必败,那么就是必胜态,能转移到的状态都是对手的必胜态,或者无法转移,就是必败态。总算是过了,TLE是因为状态没判重,不过我还是有一点没想明白,为什么状态会出现重复#include#include#include#include#include#include...
分类:
其他好文 时间:
2015-07-28 00:43:44
阅读次数:
89
Problem A. Poetry ChallengeTime Limit: 20 SecMemory Limit: 256 MB题目连接http://codeforces.com/gym/100500/attachmentsDescriptionLet’s check another challe...
分类:
其他好文 时间:
2015-07-27 20:35:38
阅读次数:
252
String to Integer (atoi)Implementatoito convert a string to an integer.Hint:Carefully consider all possible input cases. If you want a challenge, plea...
分类:
编程语言 时间:
2015-07-25 21:27:39
阅读次数:
243
Implementatoito convert a string to an integer.Hint:Carefully consider all possible input cases. If you want a challenge, please do not see below and ...
分类:
其他好文 时间:
2015-07-19 21:27:59
阅读次数:
134
虽然A掉了但是时间感人啊....f( x, k ) 表示使用前 x 种填满容量为 k 的背包的方案数, g( x , k ) 表示使用后 x 种填满容量为 k 的背包的方案数.丢了第 i 个, 要填满容量为 k 的背包 , 则 ans( i , k ) = ∑ f( i - 1, h ) * g( ...
分类:
其他好文 时间:
2015-07-18 14:03:47
阅读次数:
131
LCM ChallengeTime Limit:2000/1000MS (Java/Others)Memory Limit:128000/64000KB (Java/Others)SubmitStatusProblem DescriptionSome days ago, I lear...
分类:
其他好文 时间:
2015-07-16 13:16:54
阅读次数:
107
题目:
Implement atoi to convert a string to an integer.Hint: Carefully consider all possible input cases. If you want a challenge, please do not see below and ask yourself what are the possible input c...
分类:
其他好文 时间:
2015-07-13 00:53:24
阅读次数:
100
Implementatoito convert a string to an integer.Hint:Carefully consider all possible input cases. If you want a challenge, please do not see below and ...
分类:
其他好文 时间:
2015-07-12 18:39:17
阅读次数:
104