传送门:http://www.lydsy.com/JudgeOnline/problem.php?id=1010 裸的斜率优化,第一次写队首维护的时候犯了个智障错误,队首维护就是维护队首,我怎么会那队尾两个点的斜率来进行比较... 保存斜率优化dp的模版. #include <cstdio> const int maxn = 50005; int n, L, head_, tail; long long s[maxn], f[maxn]; struct point { long long x,…