2018年5月21日
摘要: Consecutive Subsequence CodeForces - 977F 题目大意:输出一序列中的最大的连续数列的长度和与其对应的下标(连续是指 7 8 9这样的数列) 解题思路: 状态:把dp[i]定义为数列末尾为 i 的最大连续数列的长度值 状态转移方程:dp[i] = dp[i-1] 阅读全文
posted @ 2018-05-21 23:17 kindleheart 阅读(132) 评论(0) 推荐(0) 编辑
摘要: Cyclic Components CodeForces - 977E You are given an undirected graph consisting of nn vertices and mm edges. Your task is to find the number of conne 阅读全文
posted @ 2018-05-21 21:17 kindleheart 阅读(243) 评论(0) 推荐(0) 编辑