HDU1506

单调栈也可以做。

这里练DP就不用单调栈了。

#include 
#include 
#include 
using namespace std;
const int maxn = 100000+10;
typedef long long ll;
ll s[maxn];
ll dp[maxn];
int l[maxn],r[maxn];
int n;
int main()
{
    while(cin >> n &&n)
    {
        for(int i=0; i> s[i];
        }
        l[0] = 0;
        r[n-1] = n-1;
        for(int i=1; i0 && s[t-1]>=s[i])
            {
                t = l[t-1];
                // cout <<"&"<=0; i--)
        {
            int t = i;
            while(t=s[i])
            {
                t = r[t+1];
                //cout << r[n-1] <Max)
            {
                Max = s[i]*(r[i]-l[i]+1);
            }
        }
        cout << Max <


你可能感兴趣的:(HUD,DP46题,基础DP)