上一页 1 2 3 4 5 6 7 ··· 16 下一页
摘要: Codeforces Round #586 (Div. 1 + Div. 2) D. Alex and Julian Description Boy Dima gave Julian a birthday present - set BB consisting of positive integer 阅读全文
posted @ 2019-09-19 20:11 kaike 阅读(339) 评论(0) 推荐(0) 编辑
摘要: Find the answer Description Given a sequence of n integers called W and an integer m. For each i (1 <= i <= n), you can choose some elements Wk (1 <= 阅读全文
posted @ 2019-08-06 10:28 kaike 阅读(242) 评论(0) 推荐(0) 编辑
摘要: Kadane Algorithm 求一个数组里连续子序列的和最大。 A. Flipping Game Description Iahub got bored, so he invented a game to be played on paper. He writes n integers a1,  阅读全文
posted @ 2019-07-30 15:18 kaike 阅读(292) 评论(0) 推荐(0) 编辑
摘要: A. Boredom A. Boredom Alex doesn't like boredom. That's why whenever he gets bored, he comes up with games. One long winter evening he came up with a 阅读全文
posted @ 2019-07-28 19:40 kaike 阅读(195) 评论(0) 推荐(0) 编辑
摘要: D2. RGB Substring (hard version) Description The only difference between easy and hard versions is the size of the input. You are given a string ss co 阅读全文
posted @ 2019-07-26 15:19 kaike 阅读(302) 评论(0) 推荐(0) 编辑
摘要: 题目链接 A:Equivalent Prefixes 给你两个长度为n的序列a、b,求一个最大k值使,i-k 中任意一个区间的最小值下标都相同 我们用单调栈处理每个元素作为最小值的左端点。 我们把下标放进栈中,比较的时候比较具体的值,维护一个值逐渐变大的单调栈。 若当前栈为空,则说明没有比当前值更小 阅读全文
posted @ 2019-07-26 13:56 kaike 阅读(217) 评论(0) 推荐(0) 编辑
摘要: D2. Submarine in the Rybinsk Sea (hard edition) Description This problem differs from the previous one only in the absence of the constraint on the eq 阅读全文
posted @ 2019-07-21 09:01 kaike 阅读(442) 评论(0) 推荐(0) 编辑
摘要: 这其实也是一种数据结构。 阅读全文
posted @ 2019-07-15 15:01 kaike 阅读(170) 评论(0) 推荐(0) 编辑
摘要: 先抄个模板 EK: 1 const int MAXN = 430; 2 const int MAX_INT = (1 << 30); 3 4 struct Edge{ 5 int v, nxt, w; 6 }; 7 8 struct Node{ 9 int v, id; 10 }; 11 12 in 阅读全文
posted @ 2019-07-11 08:52 kaike 阅读(199) 评论(0) 推荐(0) 编辑
摘要: 二分图的定义,以及判断图是否为二分图都很简单了。 现在要说二分图的最大匹配。 首先是定义吧,完美匹配就是一一对应,而最大匹配则是最大可以匹配的条数 完美匹配一定是最大匹配,图中不一定都有完美匹配。 第二个就是ans的定义不是有几种不同的匹配方案,而是匹配数。 当ans〉=一边端点时,才有一个完美匹配 阅读全文
posted @ 2019-07-09 16:47 kaike 阅读(203) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 16 下一页