将中文数字转换成英文表示,例:1031转换成 one thousand thirty and one...
分类:
其他好文 时间:
2014-10-03 12:16:54
阅读次数:
242
Problem Description
Whuacmers use coins.They have coins of value A1,A2,A3...An Silverland dollar. One day Hibix opened purse and found there were some coins. He decided to buy a very nice watch in ...
分类:
其他好文 时间:
2014-10-03 02:05:13
阅读次数:
356
每次都和e[0]有关系 通过方程消去环
dp[i] = sigma(dp[i+k]*p)+dp[0]*p+1
dp[i] = a[i]*dp[0]+b[i]
dp[i] = sigma(p*(a[i+k]*dp[0]+b[i+k]))+dp[0]*p+1
a[i] = sigma(a[i+k]*p)+p
b[i] = sigma(b[i+k]*p)+1
#include
#inc...
分类:
其他好文 时间:
2014-10-03 01:42:33
阅读次数:
491
Beautiful People
Time Limit: 5 Seconds Memory Limit: 32768 KB Special Judge
The most prestigious sports club in one city has exactly N members. Each of its members is strong and beauti...
分类:
其他好文 时间:
2014-10-02 14:10:43
阅读次数:
180
[leetcode]Given a string S, find the longest palindromic substring in S. You may assume that the maximum length of S is 1000, and there exists one unique longest palindromic substring....
分类:
其他好文 时间:
2014-10-02 13:30:42
阅读次数:
217
[leetcode]Merge k sorted linked lists and return it as one sorted list. Analyze and describe its complexity....
分类:
其他好文 时间:
2014-10-02 11:43:22
阅读次数:
165
Merge k sorted linked lists and return it as one sorted list. Analyze and describe its complexity1. Naive Solution思路:直接的想法依次找出列表中的最小项串接起来。 复杂度分析:时间复杂度...
分类:
其他好文 时间:
2014-10-02 01:18:11
阅读次数:
163
Given a string S,
find the longest palindromic substring in S.
You may assume that the maximum length of S is
1000, and there exists one unique longest palindromic substring.
面DP题的考官都是神经病。。(吐...
分类:
其他好文 时间:
2014-10-01 13:15:31
阅读次数:
242
Mergeksorted linked lists and return it as one sorted list. Analyze and describe its complexity.方法一:暴力破解,1和2合并,合并后再和3合并,合并后再和4合并。。。如此下去一直将所有链表节点全部合并完。...
分类:
其他好文 时间:
2014-10-01 12:19:11
阅读次数:
252
在昨晚美国旧金山召开的 Windows 发布会上,微软宣布了下一代 Windows 名称为Windows 10。
标志着微软新一代 Windows 10 时代的开始,目前还只是宣布专注于企业和专业用户的功能,尤其是笔记本和桌面电脑的设备。
Windows 10 技术预览版预计明天开始提供下载。
Windows 10 将驱动小尺寸的如可穿戴设备、手机、平板,到笔记本、桌面电脑、Xbox One,以及更大屏幕的设备。
2015年初,微软将透露更多设备类型(比如手机、平板)上的 Windows 10,以及...