上一页 1 ··· 26 27 28 29 30 31 32 33 34 ··· 43 下一页
摘要: "传送门" 时间限制:2 s 内存限制:128 MB DESCRIPTION C国国土辽阔,地大物博......但是最近却在闹蝗灾..... 我们可以把C国国土当成一个W×W的矩阵,你会收到一些诸如(X,Y,Z)的信息,代表(X,Y)这个点增多了Z只蝗虫,而由于C国政府机关比较臃肿,为了批复消灭蝗虫 阅读全文
posted @ 2016-09-06 10:20 Pat 阅读(348) 评论(0) 推荐(0) 编辑
摘要: 这是系统复习动态规划 (Dynamic Programming, DP)的第一篇随笔. 以 "Codeforces 711 C coloring trees" 为例, 总结一下DP的基础知识. time limit per test 2 seconds memory limit per test 2 阅读全文
posted @ 2016-09-04 11:45 Pat 阅读(328) 评论(0) 推荐(0) 编辑
摘要: 时间限制:1000ms单点时限:1000ms内存限制:256MB描述现在有一棵有N个带权顶点的树,顶点编号为1,2,...,N。我们定义一条路径的次小(最小)权为它经过的所有顶点(包括起点和终点)中权值次小(最小)顶点的权值。现在给定常数c,你需要求出:存在多少个使得u<v的顶点组(u,v),满足从 阅读全文
posted @ 2016-09-02 14:48 Pat 阅读(707) 评论(0) 推荐(0) 编辑
摘要: (留坑待填) Extraction from the C++ Programming Language 4th. ed., Bjarne Stroustrup 31.3.3 Size and Capacity The size is the number of elements in the con 阅读全文
posted @ 2016-08-29 22:25 Pat 阅读(191) 评论(0) 推荐(0) 编辑
摘要: extraction from The C++ Programming Language 4th. ed., Section 7.7 References, Bjarne Stroustrup To reflect the lvalue/rvalue and const/non-const dist 阅读全文
posted @ 2016-08-29 16:47 Pat 阅读(348) 评论(0) 推荐(0) 编辑
摘要: 传送门 题目大意 给定文本串$S$和若干模式串$\{T\}$, 对每个模式串$T$, 询问$T$是否为$S$的子串. Solution 裸的AC自动机, 也可以用后缀数组做. P.S. 这题数据很弱, 朴素的字符串匹配也能过. Pitfalls 模式串有重复的. 这样, 在建TRIE时就不能直接对每 阅读全文
posted @ 2016-08-29 03:13 Pat 阅读(384) 评论(0) 推荐(0) 编辑
摘要: Data structures A data structure is a way to store and organize data in order to facilitate access and modifications. Loop invariants We use loop inva 阅读全文
posted @ 2016-08-28 00:58 Pat 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 传送门 时间限制:18000ms单点时限:2000ms内存限制:512MB描述小h拥有$n$位朋友。每位朋友拥有一个数值$V_i$代表他与小h的亲密度。亲密度有可能发生变化。岁月流逝,小h的朋友们形成了一种稳定的树状关系。每位朋友恰好对应树上的一个节点。每次小h想请两位朋友一起聚餐,他都必须把连接两 阅读全文
posted @ 2016-08-27 22:07 Pat 阅读(276) 评论(0) 推荐(0) 编辑
摘要: How do I use software from a PPA? To start installing and using software from a Personal Package Archive, you first need to tell Ubuntu where to find 阅读全文
posted @ 2016-08-23 04:31 Pat 阅读(380) 评论(0) 推荐(0) 编辑
摘要: Extraction from C++ Primer 5th. Editioin 3.2.1 C++ has several different forms of initialization, we should understand how these forms differ from one 阅读全文
posted @ 2016-08-20 23:59 Pat 阅读(247) 评论(0) 推荐(0) 编辑
上一页 1 ··· 26 27 28 29 30 31 32 33 34 ··· 43 下一页