Good subsequenceProblem's Link: http://acm.csu.edu.cn/OnlineJudge/problem.php?id=1553Mean:给你一个长度为n的序列和一个值k,让你找出一个子序列,满足在这个子序列中max-min的值#include#includ...
分类:
其他好文 时间:
2015-03-30 18:05:09
阅读次数:
100
URL重写指南 http://man.chinaunix.net/newsoft/ApacheManual/misc/rewriteguide.html http://www.111cn.net/phper/apache/46384.htm 1) R[=code](force redirect) 强制外部重定向? 强制在替代字符串加上http://...
分类:
Web程序 时间:
2015-03-30 14:46:12
阅读次数:
177
【问题描述】给出n个数qi,给出Fj的定义如下:令Ei=Fi/qi。试求Ei。【输入格式】输入文件force.in包含一个整数n,接下来n行每行输入一个数,第i行表示qi。【输出格式】输出文件force.out有n行,第i行输出Ei。与标准答案误差不超过1e-2即可。【样例输入】54006373.8...
分类:
其他好文 时间:
2015-03-30 12:52:49
阅读次数:
158
I would like to force the overflow icon to always show in the action bar (assuming there are overflow items). On models with a menu button, sometimes the overflow icon doesn‘t appear and users must...
分类:
其他好文 时间:
2015-03-28 20:31:01
阅读次数:
153
我们更新了QQ sdk的新包,而QQ的新包加了一个so文件,该文件eclipse的默认检查比较严格。
Eclipse->windows->Perferences ,
取消 Force error when external jars contain native libraries.
取消 Skip packaging and dexing until export and lunch. (...
分类:
编程语言 时间:
2015-03-28 17:18:37
阅读次数:
151
求一个序列的子序列的最大值,这是一个经典算法,这里稍作整理。
问题:任给一个整数序列,如{-2, 5, 7, 11, -4, 13, -5, -2, -6, 3, -1, 3},求出这个序列中连续子序列的和的最大值,这个例子中最大值为32,子序列为{5, 7, 11, -4, 13}。
方法一:最简单的暴力法。确立一个起点,一个终点,计算起点到终点的和。下面代码中int brute_force...
分类:
其他好文 时间:
2015-03-21 17:15:02
阅读次数:
179
Brute Force: 1 class Solution { 2 public: 3 bool notExist(vector rec, int level, int current) { 4 for (int i = 0; i rec, vector &result) ...
分类:
其他好文 时间:
2015-03-21 09:44:49
阅读次数:
115
开放式虚拟机格式(OVF,Open Virtualization Format),OVF规范是由VMware和一些其他的公司创建的开方式标准。OVF规范已经被提交给分布式任务管理组(DMTF, Distributed Management Task Force),DMTF 是一家非营利性的业界成员合...
分类:
其他好文 时间:
2015-03-20 18:24:16
阅读次数:
2194
Brute Force: 1 class Solution { 2 public: 3 int strStr(char *haystack, char *needle) { 4 if (!haystack) return -1; 5 if (!needle) ...
分类:
其他好文 时间:
2015-03-20 01:13:34
阅读次数:
110
Very good problem to learn knapsack (complete knapsack in this case).My brutal-force solution in Python got AC too, which surprised me a bit. Here is ...
分类:
其他好文 时间:
2015-03-19 06:18:36
阅读次数:
135