上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 47 下一页
摘要: 转载地址:http://blog.csdn.net/acdreamers/article/details/9989197首先来说说三分的概念:二分是把区间分为长度相等的两段,三分则是把区间分为长度相等的三段,进行查找,这样的查找称为三分查找,三分查找通常用来迅速确定最值。众所周知,二分算法的要求是搜... 阅读全文
posted @ 2015-02-03 20:08 我喜欢旅行 阅读(1786) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #include #include #define N 100000+2using namespace std;//无根树转有根树算法/* 算法分析:所谓无根树,就是根节点任意的树。我们可以给它确定一个根节点。 我们可以假定认为某一个节点为根... 阅读全文
posted @ 2015-02-03 19:33 我喜欢旅行 阅读(930) 评论(0) 推荐(0) 编辑
摘要: #1050 : 树中的最长路时间限制:10000ms单点时限:1000ms内存限制:256MB描述上回说到,小Ho得到了一棵二叉树玩具,这个玩具是由小球和木棍连接起来的,而在拆拼它的过程中,小Ho发现他不仅仅可以拼凑成一棵二叉树!还可以拼凑成一棵多叉树——好吧,其实就是更为平常的树而已。但是不管怎么... 阅读全文
posted @ 2015-02-03 08:54 我喜欢旅行 阅读(1212) 评论(0) 推荐(0) 编辑
摘要: 两次DFS求树中的最长路。基于邻接矩阵:代码:#include #include #include #include #include #include using namespace std;bool map[10001][10001];int n;int tail;bool vis[1001];... 阅读全文
posted @ 2015-02-02 19:45 我喜欢旅行 阅读(295) 评论(0) 推荐(0) 编辑
摘要: 路线冲突问题题目描述给出一张地图,地图上有n个点,任意两点之间有且仅有一条路。点的编号从1到n。现在兵团A要从s1到e1,兵团B要从s2到e2,问两条路线是否会有交点,若有则输出交点个数,否出输出”success”。输入多组输入。对于每组输入。第一行输入n(1#include #include #i... 阅读全文
posted @ 2015-02-02 15:26 我喜欢旅行 阅读(351) 评论(0) 推荐(0) 编辑
摘要: Black and white painting题目描述You are visiting the Centre Pompidou which contains a lot of modern paintings. In particular you notice one painting which... 阅读全文
posted @ 2015-02-02 08:53 我喜欢旅行 阅读(275) 评论(0) 推荐(0) 编辑
摘要: Annoying painting tool题目描述Maybe you wonder what an annoying painting tool is? First of all, the painting tool we speak of supports only black and whit... 阅读全文
posted @ 2015-02-02 08:24 我喜欢旅行 阅读(321) 评论(0) 推荐(0) 编辑
摘要: #1094 : Lost in the City时间限制:10000ms单点时限:1000ms内存限制:256MB描述Little Hi gets lost in the city. He does not know where he is. He does not know which direc... 阅读全文
posted @ 2015-01-30 10:15 我喜欢旅行 阅读(684) 评论(0) 推荐(0) 编辑
摘要: #1103 : Colorful Lecture Note时间限制:10000ms单点时限:1000ms内存限制:256MB描述Little Hi is writing an algorithm lecture note for Little Ho. To make the note more co... 阅读全文
posted @ 2015-01-30 09:11 我喜欢旅行 阅读(326) 评论(0) 推荐(0) 编辑
摘要: Sliding WindowTime Limit: 12000MSMemory Limit: 65536KTotal Submissions: 41264Accepted: 12229Case Time Limit: 5000MSDescriptionAn array of size n ≤ 106... 阅读全文
posted @ 2015-01-29 16:51 我喜欢旅行 阅读(321) 评论(0) 推荐(0) 编辑
上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 47 下一页