luogu P2627 [USACO11OPEN]Mowing the Lawn G 单调队列优化dp
2021-03-07 19:32
标签:iostream 变量 using code scanf space 队列 std += luogu P2627 [USACO11OPEN]Mowing the Lawn G 单调队列优化dp 标签:iostream 变量 using code scanf space 队列 std += 原文地址:https://www.cnblogs.com/QingyuYYYYY/p/12819846.html//f[i]表示从前i头牛中选,且合法,的所有方案,价值最大
//第i头选或不选都可以
//不选:变成f[i-1]
//选i:需要知道从i开始往前连续选了多少个,最多是k
//如果是x个,那么就加上w[i-x+1]+w[i-x+2]...+w[i],也就是s[i]-s[i-j]
//那么再往前选的话,下标需要
#include
文章标题:luogu P2627 [USACO11OPEN]Mowing the Lawn G 单调队列优化dp
文章链接:http://soscw.com/index.php/essay/61480.html