poj3320 2019-08-05 ACM老Blog迁移reading_problem nexthexonextbutterflyvolantisyearnyiliashokaindigoapollolandscapecactusmateryicarusfluidmaterial 转移自老blog poj3320 链接 http://poj.org/problem?id=3320 题意 一本书有P页,每一页都一个知识点,求去最少的连续页数覆盖所有的知识点。 p<1e6 题解 先考虑一个暴力做法,枚举所有的方案,此做法复杂度,n^2 然后我们尝试dp, dp[i]代表页数[0:i]中以i结尾的,覆盖了所有的知识点的最大的页数起点 显然 起点j ---> dp[i] j<i 容易证明:dp[i]关于i单调不减 加速判断过程,可以map记录,也可以hash映射, 然后我惊讶的发现此做法竟然就是尺取法。 最后更新时间:2019-08-05 23:23:08 这里可以写作者留言,标签和 hexo 中所有变量及辅助函数等均可调用,示例:<%- page.permalink.replace(/index\.html$/, '') %> 赏 Prev poj3061 Next 牛客练习赛41B