上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 16 下一页
摘要: Color the ball Time Limit: 9000/3000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 23618 Accepted Submission(s): 114 阅读全文
posted @ 2017-10-05 20:57 Zireael 阅读(127) 评论(0) 推荐(0) 编辑
摘要: “学习本无底,前进莫徬徨。” 秋实大哥对一旁玩手机的学弟说道。 秋实大哥是一个爱学习的人,今天他刚刚学习了线段树这个数据结构。 为了检验自己的掌握程度,秋实大哥给自己出了一个题,同时邀请大家一起来作。 秋实大哥的题目要求你维护一个序列,支持两种操作:一种是修改某一个元素的值;一种是询问一段区间的和。 阅读全文
posted @ 2017-09-29 19:33 Zireael 阅读(274) 评论(0) 推荐(0) 编辑
摘要: 链表允许我们添加、删除、搜索数据,这种数据结构会在执行时申请必要的内存空间,便于管理动态集合。但是链表的时间复杂度为O(n)。相比之下,使用动态树结构能更加有效地添加、删除和搜索数据。 搜索树是一种可以进行动态插入、搜索、删除等操作的数据结构,可以用作字典或优先级队列。二叉搜索树属于最基本的搜索树。 阅读全文
posted @ 2017-09-20 15:26 Zireael 阅读(302) 评论(0) 推荐(0) 编辑
摘要: Binary trees are defined recursively. A binary tree T is a structure defined on a finite set of nodes that either contains no nodes, or is composed of 阅读全文
posted @ 2017-09-16 16:29 Zireael 阅读(357) 评论(0) 推荐(0) 编辑
摘要: A rooted binary tree is a tree with a root node in which every node has at most two children. Your task is to write a program which reads a rooted bin 阅读全文
posted @ 2017-09-14 20:22 Zireael 阅读(184) 评论(0) 推荐(0) 编辑
摘要: 建立新的编译系统 Tools->Build System->New Build System 在打开的页面中粘贴以下代码 保存文件(ctrl+s),并且取一个自己喜欢的名字,(后缀名不要改),在Tools->Build System中选择即可。 阅读全文
posted @ 2017-09-14 19:34 Zireael 阅读(905) 评论(0) 推荐(1) 编辑
摘要: 最长上升子序列问题,也就是Longest increasing subsequence,缩写为LIS。是指在一个序列中求长度最长的一个上升子序列的问题,是动态规划中一个相当经典问题。上升子序列指的是对于任意的i<j都是满足ai<aj的子序列。 定义dp[i]:=以ai为末尾的最长上升子序列的长度 以 阅读全文
posted @ 2017-09-13 17:18 Zireael 阅读(268) 评论(0) 推荐(0) 编辑
摘要: Nowadays, a kind of chess game called “Super Jumping! Jumping! Jumping!” is very popular in HDU. Maybe you are a good boy, and know little about this 阅读全文
posted @ 2017-09-11 20:31 Zireael 阅读(158) 评论(0) 推荐(0) 编辑
摘要: Bessie is such a hard-working cow. In fact, she is so focused on maximizing her productivity that she decides to schedule her next N (1 ≤ N ≤ 1,000,00 阅读全文
posted @ 2017-09-11 19:07 Zireael 阅读(154) 评论(0) 推荐(0) 编辑
摘要: A graph G = (V, E) is a data structure where V is a finite set of vertices and E is a binary relation on V represented by a set of edges. Fig. 1 illus 阅读全文
posted @ 2017-09-10 12:03 Zireael 阅读(418) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 16 下一页