摘要: AntsDescriptionAn army of ants walk on a horizontal pole of length l cm, each with a constant speed of 1 cm/s. When a walking ant reaches an end of th... 阅读全文
posted @ 2015-01-10 17:36 tinylcy 阅读(686) 评论(0) 推荐(0) 编辑
摘要: 题目描述:给定一个浮点数序列(可能有正数、0和负数),求出一个最大的连续子序列乘积。输入:输入可能包含多个测试样例。每个测试样例的第一行仅包含正整数 n(n using namespace std; void initDp(double dp[],int length){ for(int i=... 阅读全文
posted @ 2015-01-10 14:41 tinylcy 阅读(241) 评论(0) 推荐(0) 编辑
摘要: 题目描述:输入一个递增排序的数组和一个数字S,在数组中查找两个数,是的他们的和正好是S,如果有多对数字的和等于S,输出两个数的乘积最小的。输入:每个测试案例包括两行:第一行包含一个整数n和k,n表示数组中的元素个数,k表示两数之和。其中1 #include #define INF 0x7ffffff... 阅读全文
posted @ 2015-01-10 10:21 tinylcy 阅读(241) 评论(0) 推荐(0) 编辑