Feel Good

Bill is developing a new mathematical theory for human emotions. His recent investigations are dedicated to studying how good or bad days influent people’s memories about some period of life.

A new idea Bill has recently developed assigns a non-negative integer value to each day of human life.

Bill calls this value the emotional value of the day. The greater the emotional value is, the better the daywas. Bill suggests that the value of some period of human life is proportional to the sum of the emotional values of the days in the given period, multiplied by the smallest emotional value of the day in it. This schema reflects that good on average period can be greatly spoiled by one very bad day.

Now Bill is planning to investigate his own life and find the period of his life that had the greatest value. Help him to do so.
Input
The first line of the input contains n - the number of days of Bill’s life he is planning to investigate(1 <= n <= 100 000). The rest of the file contains n integer numbers a1, a2, … an ranging from 0 to 10 6 - the emotional values of the days. Numbers are separated by spaces and/or line breaks.
Output
Print the greatest value of some period of Bill’s life in the first line. And on the second line print two numbers l and r such that the period from l-th to r-th day of Bill’s life(inclusive) has the greatest possible value. If there are multiple periods with the greatest possible value,then print any one of them.
Sample Input
6
3 1 6 4 5 2
Sample Output
60
3 5

思路,ans= sum_区间 * min_区间;所以需要最小值越大越好,总和越大越好,所以遍历每个最小值,看看“最小值”能当最小值的区间,最大有多么大。之后保存下来,就好了。

#include
#include
using namespace std;

typedef long long ll;
int a[100010],l[100010],r[100010];
ll sum[100010]={0};
ll temp;

int main()
{
   int n,i,maxL,maxR;
   stack<int> stk,stk2;
   scanf("%d",&n);
     ll ans=-1,sum_temp=0;
    for(i=0;iscanf("%d",&a[i]);
         sum_temp=sum_temp+a[i];
         sum[i]=sum_temp;
    }


   for(i=0;iwhile(stk.size() && a[stk.top()] >= a[i])
          stk.pop(); //栈里存的是下标
       l[i] = stk.size()==0 ? 0 : (stk.top() + 1);
       stk.push(i);
   }

   for(i=n-1;i>=0;i--)
   {
      while(stk2.size()&&a[stk2.top()]>=a[i])
         stk2.pop();
      r[i]=stk2.size()==0 ? n-1:(stk2.top()-1);
      stk2.push(i);
   }

   for(i=0;iif(l[i]!=0)
         temp=(sum[r[i]]-sum[l[i]-1])*a[i];
       else
         temp=(sum[r[i]])*a[i];
       if(temp>ans)
       {
           ans=temp;
           maxL=l[i]+1;
           maxR=r[i]+1;
       }
   }
   printf("%lld\n%d %d\n",ans,maxL,maxR);
   return 0;
}

你可能感兴趣的:(【ACM-数据结构】,.....栈)