• 【c++刷题Day2】专题3栈与队列&单调栈与单调队列T4


    这是C++刷题的Day2
    在这里插入图片描述
    🕋题目描述
    🚀🚀🚀🚀🚀🚀🚀🚀🚀🚀🚀🚀🚀🚀🚀🚀🚀🚀
    After Mr. B arrived in Warsaw, he was shocked by the skyscrapers and took several photos. But now when he looks at these photos, he finds in surprise that he isn’t able to point out even the number of buildings in it. So he decides to work it out as follows:
    - divide the photo into n vertical pieces from left to right. The buildings in the photo can be treated as rectangles, the lower edge of which is the horizon. One building may span several consecutive pieces, but each piece can only contain one visible building, or no buildings at all.
    - measure the height of each building in that piece.
    - write a program to calculate the minimum number of buildings.
    Mr. B has finished the first two steps, the last comes to you.
    Input
    Each test case starts with a line containing an integer n (1 <= n <= 100,000). Following this is a line containing n integers - the height of building in each piece respectively. Note that zero height means there are no buildings in this piece at all. All the input numbers will be nonnegative and less than 1,000,000,000.
    Output
    For each test case, display a single line containing the case number and the minimum possible number of buildings in the photo.
    Sample
    Inputcopy Outputcopy

    3
    1 2 3
    3
    1 2 1
    
    	
    
    Case 1: 3
    Case 2: 2
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9

    Hint

    The possible configurations of the samples are illustrated below:
    
    • 1

    🚀🚀🚀🚀🚀🚀🚀🚀🚀🚀🚀🚀🚀🚀🚀🚀🚀🚀

    🔑思路

    用对于H[i],要看它最多能延申到哪里,可以用单调栈维护即可

    💯CODE代码:

    #include 
    #pragma GCC optimize(2)
    #define fi first
    #define se second
    #define min3 (x , y , z) min (x , min (y , z))
    #define max3 (x , y , z) max (x , max (y , z))
    
    using namespace std ;
    
    typedef long long ll ;
    typedef double db ;
    typedef pair < int , int > PII ;
    typedef pair < string , int > PSI ;
    
    const int maxn = 1e5 + 5 ;
    int n , A[maxn] ;
    int stk[maxn] , top ;
    int main ()
    {
    	int C = 0 ;
    	while (++ C , ~ scanf ("%d" , & n)) {
    		for (int i = 1; i <= n; i ++)
    			scanf ("%d" , & A[i]) ;
    		top = 0 ;
    		int ans = n ;
    		for (int i = 1; i <= n; i ++) {
    			if (! A[i]) {
    				ans -- ;
    				top = 0 ;
    				continue ;
    			}
    			while (top && A[stk[top]] >= A[i]) {
    				if (A[stk[top]] == A[i])
    					ans -- ;
    				top -- ;
    			}
    			stk[++ top] = i ;
    		}
    		printf ("Case %d: %d\n" , C , ans) ;
    	}
    	return 0 ;
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
  • 相关阅读:
    记一次Gson在不同环境解析时间结果不同的BUG定位
    取多条数据相同用户时间最小的那条数据
    scala中函数名 _(下划线)如何理解?
    5G定位技术原理与应用场景
    专业尖端远心光学,高精度视觉检测解决者
    【Python】封装、继承、多态(21)
    RNN及自然语言处理 相关
    【Qt】.ui文件转.h文件
    打开常用软件出现msvcp140.dll丢失的解决方法,msvcp140.dll是什么东西?
    辅音和声母的区别?(声母与辅音的区别)
  • 原文地址:https://blog.csdn.net/m0_60519493/article/details/126350808