zoukankan      html  css  js  c++  java
  • Passing the Message(单调栈)

    What a sunny day! Let’s go picnic and have barbecue! Today, all kids in “Sun Flower” kindergarten are prepared to have an excursion. Before kicking off, teacher Liu tells them to stand in a row. Teacher Liu has an important message to announce, but she doesn’t want to tell them directly. She just wants the message to spread among the kids by one telling another. As you know, kids may not retell the message exactly the same as what they was told, so teacher Liu wants to see how many versions of message will come out at last. With the result, she can evaluate the communication skills of those kids.
    Because all kids have different height, Teacher Liu set some message passing rules as below:

    1.She tells the message to the tallest kid.

    2.Every kid who gets the message must retell the message to his “left messenger” and “right messenger”.

    3.A kid’s “left messenger” is the kid’s tallest “left follower”.

    4.A kid’s “left follower” is another kid who is on his left, shorter than him, and can be seen by him. Of course, a kid may have more than one “left follower”.

    5.When a kid looks left, he can only see as far as the nearest kid who is taller than him.

    The definition of “right messenger” is similar to the definition of “left messenger” except all words “left” should be replaced by words “right”.

    For example, suppose the height of all kids in the row is 4, 1, 6, 3, 5, 2 (in left to right order). In this situation , teacher Liu tells the message to the 3rd kid, then the 3rd kid passes the message to the 1st kid who is his “left messenger” and the 5th kid who is his “right messenger”, and then the 1st kid tells the 2nd kid as well as the 5th kid tells the 4th kid and the 6th kid.
    Your task is just to figure out the message passing route.

    InputThe first line contains an integer T indicating the number of test cases, and then T test cases follows.
    Each test case consists of two lines. The first line is an integer N (0< N <= 50000) which represents the number of kids. The second line lists the height of all kids, in left to right order. It is guaranteed that every kid’s height is unique and less than 2^31 – 1 .OutputFor each test case, print “Case t:” at first ( t is the case No. starting from 1 ). Then print N lines. The ith line contains two integers which indicate the position of the ith (i starts form 1 ) kid’s “left messenger” and “right messenger”. If a kid has no “left messenger” or “right messenger”, print ‘0’ instead. (The position of the leftmost kid is 1, and the position of the rightmost kid is N)Sample Input
    2
    5
    5 2 4 3 1
    5
    2 1 4 3 5

    Sample Output
    Case 1:
    0 3
    0 0
    2 4
    0 5
    0 0
    Case 2:
    0 2
    0 0
    1 4
    0 0
    3 0
    
    
    题意 是输出每个左边(右边)比他矮的 且最高的人的高度  也就是向左(向右)找到第一个比他高的 然后他到这个人之间的最高的高度 如果没有 输出0 左右各来一遍单调栈 用flag判断是否存在
    
    代码:
    #include<iostream>
    #include<stdio.h>
    #include<cstring>
    #include<queue>
    
    #define MAXN 50005
    
    using namespace std;
    
    struct D{
    	int a,b;
    };
    
    int board[MAXN];
    int r[MAXN];
    int l[MAXN];
    struct D s[MAXN];
    
    int digit;
    
    int main(){
    	int T;
    	scanf("%d",&T);
    	while(T--){
    		int N;
    		scanf("%d",&N);
    		for(int i=1 ; i<=N ; i++){
    			scanf("%d",&board[i]);
    		}
    		int top = -1;
    		memset(r,0,sizeof(r));
    		memset(l,0,sizeof(l));
    		for(int i=1 ; i<=N  ; i++){
    			if(top == -1){
    				s[++top].a = board[i];
    				s[top].b = i;
    			}
    			else{
    				int max = 0;
    				int tt;
    				while(s[top].a<=board[i] && top>=0){
    					top--;
    					if(s[top+1].a>max && s[top+1].a!=board[i]){
    						max = s[top+1].a;
    						tt = s[top+1].b;
    					}
    				}
    				if(!max)l[i] = 0;
    				else l[i] = tt;
    				s[++top].a = board[i];
    				s[top].b  = i;
    			}	
    		}
    		top = -1;
    		for(int i=N ; i>=1  ; i--){
    			if(top == -1){
    				s[++top].a = board[i];
    				s[top].b = i;
    			}
    			else{
    				int max = 0;
    				int tt;
    				while(s[top].a<=board[i] && top>=0){
    					top--;
    					if(s[top+1].a>max && s[top+1].a!=board[i]){
    						max = s[top+1].a;
    						tt = s[top+1].b;
    					}
    				}
    				if(max == 0)r[i] = 0;
    				else r[i] = tt;
    				s[++top].a = board[i];
    				s[top].b = i;
    			}	
    		}
    		printf("Case %d:
    ",++digit);
    		for(int i=1 ; i<=N ; i++){
    			printf("%d %d
    ",l[i],r[i]);
    		}
    	}
    	return 0;
    }	
    
    用单调递增栈做,栈内元素用结构体,同时存储高度和下标。




  • 相关阅读:
    Tensorflow使用环境配置
    学习笔记——EM算法
    学习笔记——提升方法
    学习笔记——支持向量机
    加入BOINC(伯克利开放式网络计算平台)
    斐波那契大数模板
    多重部分和的计数dp
    POJ 2674 Linear world
    POJ 1222 EXTENDED LIGHTS OUT(翻转+二维开关问题)
    POJ3185 The Water Bowls(反转法or dfs 爆搜)
  • 原文地址:https://www.cnblogs.com/vocaloid01/p/9514316.html
Copyright © 2011-2022 走看看