breakfast 早餐lunch 午餐brunch 早午餐supper 晚餐late snack 宵夜dinner 正餐ham and egg 火腿肠buttered toast 奶油土司French toast 法国土司muffin松饼cheese cake 酪饼white bread 白面包b...
分类:
其他好文 时间:
2014-07-31 19:39:47
阅读次数:
219
HDU 1160 FatMouse's Speed (动规+最长递减子序列)...
分类:
其他好文 时间:
2014-07-31 00:04:08
阅读次数:
270
本题就先排序老鼠的重量,然后查找老鼠的速度的最长递增子序列,不过因为需要按原来的标号输出,故此需要使用struct把三个信息打包起来。
查找最长递增子序列使用动态规划法,基本的一维动态规划法了。
记录路径:只需要记录后继标号,就可以逐个输出了。
#include
#include
using namespace std;
const int MAX_N = 1005;...
分类:
其他好文 时间:
2014-07-29 22:08:43
阅读次数:
292
FatMouse' Trade
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 42786 Accepted Submission(s): 14274
Problem Description
FatMouse p...
分类:
其他好文 时间:
2014-07-29 17:47:52
阅读次数:
187
Problem Description
FatMouse has stored some cheese in a city. The city can be considered as a square grid of dimension n: each grid location is labelled (p,q) where 0 <= p < n and 0 <= q < n. At e...
分类:
其他好文 时间:
2014-07-28 00:02:49
阅读次数:
319
FatMouse's SpeedTime Limit: 2000/1000 MS (Java/Others)Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 9069Accepted Submission(s): 4022Sp...
分类:
其他好文 时间:
2014-07-27 21:29:55
阅读次数:
275
半个下午,总算A过去了毕竟水题好歹是自己独立思考,debug,然后2A过的我为人人的dp算法题意:为了支持你的观点,你需要从给的数据中找出尽量多的数据,说明老鼠越重速度越慢这一论点本着“指针是程序员杀手”这一原则,我果断用pre来表示这只老鼠的直接前驱的序号代码中我是按体重从大到小排序,然后找出一条...
分类:
其他好文 时间:
2014-07-22 22:45:52
阅读次数:
220
一 题意描述: FatMouse' Trade Time Limit: 2000/1000 MS (Java/Others)Memory Limit: 65536/32768 K (Java/Others) ...
分类:
其他好文 时间:
2014-07-22 00:09:35
阅读次数:
242
FatMouse' Trade
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 41982 Accepted Submission(s): 13962
Problem Description
...
分类:
其他好文 时间:
2014-07-16 17:34:29
阅读次数:
198
Problem Description
FatMouse believes that the fatter a mouse is, the faster it runs. To disprove this, you want to take the data on a collection of mice and put as large a subset of this data as p...
分类:
其他好文 时间:
2014-07-16 08:00:45
阅读次数:
347