Bad Hair Day题解

#include
#include
struct Stack{
    int *top;
    int *base;
}cow;
#define  Max 80001
int main()
{
    int n,i,j,height[80001];
     __int64 sum;
    scanf("%d",&n);
    for(i=0;i         scanf("%d",&height[i]);
    }
    cow.base=(int*)malloc(sizeof(int)*Max);
    cow.top=cow.base;
    *(cow.top)=height[0];
    cow.top++;
    for(i=1,sum=0;i         while(cow.top!=cow.base&&*(cow.top-1)<=height[i]){
            cow.top--;
        }
        *(cow.top)=height[i];
        sum+=(cow.top-cow.base);
        cow.top++;
    }
    printf("%l64d\n",sum);
    return 0;

}

我第一遍写超时,第二遍写思路和题解一样,但没用stack做,就超时,说实话,有时候用数据结构时间复杂度就是会低一点,太垃圾了,要努力了!

题解:用单调栈来解决,比起我用数组来解,相同思路,但因为一边进栈之前,有出栈的操作,使得比较次数减少,时间复杂的降低

你可能感兴趣的:(C语言,编程,单调栈)