zoukankan      html  css  js  c++  java
  • jzoj 6305. 最小值

    Description

    详见OJ

    Solution

    第一眼看上去好像斜率(DP),但仔细一看发现不能用单调队列维护。
    然后(GG)
    正解使用单调栈来维护。
    我们发现,我们维护的单调栈(g[])(a[])是呈单调不下降的。
    对于新加入的点i,我们需要将单调栈中(a[])大于(a[i])的弹出栈中,
    因为这些点的答案需要重新计算。
    对于弹出的(f[g[]])我们与(f[i-1])(max),然后更新答案,并将点(i)加入栈中。

    Code

    #include <cstdio>
    #define N 200010
    #define ll long long
    #define mem(x, a) memset(x, a, sizeof x)
    #define fo(x, a, b) for (int x = a; x <= b; x++)
    #define fd(x, a, b) for (int x = a; x >= b; x--)
    using namespace std;
    const int inf = 2147483647;
    int n, a[N], g[N], len = 0;
    ll A, B, C, D, f[N], ma[N], t;
    
    inline int read()
    {
    	int x = 0, f = 0; char c = getchar();
    	while (c < '0' || c > '9') f = (c == '-') ? 1 : f, c = getchar();
    	while (c >= '0' && c <= '9') x = (x << 1) + (x << 3) + (c ^ 48), c = getchar();
    	return f ? -x : x;
    }
    
    ll solve(int x) {return A * x * x * x + B * x * x + C * x + D;}
    
    ll max(ll x, ll y) {return x > y ? x : y;}
    
    int main()
    {
    	freopen("min.in", "r", stdin);
    	freopen("min.out", "w", stdout);
    	n = read(), A = read(), B = read(), C = read(), D = read();
    	fo(i, 1, n) a[i] = read();
    	fo(i, 1, n)
    	{
    		t = f[i - 1];
    		while (len && a[g[len]] >= a[i]) t = ma[len] > t ? ma[len] : t, len--;
    		g[++len] = i, ma[len] = t;
    		f[i] = t + solve(a[i]);
    		if (len > 1 && f[g[len - 1]] > f[i]) f[i] = f[g[len - 1]];
    	}
    	printf("%lld
    ", f[n]);
    	return 0;
    }
    
    转载需注明出处。
  • 相关阅读:
    jQuery火箭图标返回顶部代码
    jQuery火箭图标返回顶部代码
    HTML语义化
    使用全角空格进行文本对齐
    安卓手机微信中清除页面缓存的方法
    jQuery与Vue的对比
    IDE提交Git出现husky>pre-commit错误
    IDEA将工程转为maven工程
    vscode设置tab缩进字符数
    mac系统下用nginx服务器部署页面
  • 原文地址:https://www.cnblogs.com/jz929/p/11369282.html
Copyright © 2011-2022 走看看