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

与LC的课后辅导类似,这道用到了单调递减栈,分别找左右两端点,c记录最后一个出栈元素,递增栈退栈顶变小,递减栈退栈顶变大,第一个恰好比当前值大的前一个即为信使。
#include<stdio.h>
#include<string.h>
#include<stack>
using namespace std;
int main()
{int t,tt,n,c,f,i;int a[50005],l[50005],r[50005];stack<int> s;scanf("%d",&t);tt=t;while(t--){scanf("%d",&n);for(i=1;i<=n;i++){scanf("%d",&a[i]);}c=1;memset(l,0,sizeof(l));memset(r,0,sizeof(r));for(i=1;i<=n;i++){f=0;while(s.size()&&a[s.top()]<=a[i]){f=1;c=s.top();s.pop();}l[i]=f==0?0:c;s.push(i);}while(s.size()){s.pop();}c=n;for(i=n;i>=1;i--){f=0;while(s.size()&&a[s.top()]<=a[i]){f=1;c=s.top();s.pop();}r[i]=f==0?0:c;s.push(i);}while(s.size()){s.pop();}printf("Case %d:\n",tt-t);for(i=1;i<=n;i++){printf("%d %d\n",l[i],r[i]);}}return 0;
}

转载于:https://www.cnblogs.com/yzm10/p/7222587.html

HDU - 3410 Passing the Message 单调递减栈相关推荐

  1. HDU 3410 Passing the Message

    可以先处理出每个a[i]最左和最右能到达的位置,L[i],和R[i].然后就只要询问区间[ L[i],i-1 ]和区间[ i+1,R[i] ]最大值位置即可. #include<cstdio&g ...

  2. Passing the Message(单调栈)

    What a sunny day! Let's go picnic and have barbecue! Today, all kids in "Sun Flower" kinde ...

  3. 【HDU - 3410 】 Passing the Message(单调栈)

    题干: What a sunny day! Let's go picnic and have barbecue! Today, all kids in "Sun Flower" k ...

  4. 单调栈 左右传消息 HDU 3410

    Passing the Message What a sunny day! Let's go picnic and have barbecue! Today, all kids in "Su ...

  5. Passing the Message(HDU-3410)

    Problem Description What a sunny day! Let's go picnic and have barbecue! Today, all kids in "Su ...

  6. HDU1506 / POJ2339 Largest Rectangle in a Histogram 单调递减栈

    1.什么是单调栈 具有单调性和栈的性质 单调递减栈就是从栈底到栈顶是单调递减的 单调递增栈就是从栈底到栈顶是单调递增的 2.单调栈解决的问题 以自己为最小值,找到最长的区间:单调递增栈 以自己为最大值 ...

  7. 力扣刷题-python-单调栈(单调递减栈、单调递增栈)

    文章目录 1.单调栈 2.单调递减栈 3.单调递增栈 4.总结 1.单调栈 通常是一维数组,要寻找任一个元素的右边或者左边第一个比自己大或者小的元素的位置,要用单调栈. 2.单调递减栈 单调递减栈,栈 ...

  8. HDU3410 Passing the Message 【单调栈】

    题意 一个小孩可以看到左边比他矮,但是最高的孩子,同样可以看到右边比他矮,但是最高的小孩 分析 求左边比他矮,但是最高的孩子:维护一个单调栈,从栈顶到栈底单调递增: 从左边第一个孩子开始,如果栈为空或 ...

  9. hdu 1022 Train Problem I(栈)

    标记现在已经匹配到o1的第几列车了,o2从头开始,如果不匹配把o1就放入栈中,匹配后出栈并比较栈顶与o1的下一辆,匹配继续出,不匹配就继续进栈 1 #include <iostream> ...

最新文章

  1. opencv把图片转换成二进制_如何增强图像,然后使用Python和OpenCV将其转换为二进制图像?...
  2. 渐进式Web应用(PWA)入门教程(上)
  3. 转载《Data Guard Broker基础》
  4. 一文归纳总结分布式架构的那些事!
  5. 亚马逊招聘实习生,ML、CV、机器人和语音处理领域
  6. elasticsearch 报表统计_螺丝ERP销售管理系统,螺丝企业专业管理统计
  7. 这个我过滤概述UIPickerView键盘处理
  8. markdown简明使用语法
  9. About_php_封装函数
  10. 2019Java视频教程-玩转oracle
  11. html修改修改头像业务,修改头像.html
  12. 变色龙引导安装mac
  13. python暂停和恢复按钮,Python:如何暂停和恢复线程
  14. macOS中使用Delete键
  15. 网络编程分享二之魔兽对战平台编码实战
  16. 你以为你以为的三国就是你以为的三国吗——读《三国史话》
  17. vm怎么装vim_安装nginx报-bash: vm: command not found..错误提示vim文本编辑器命令没有安装...
  18. 《算法竞赛入门经典》(第二版)代码及详细解释(持续更新!)
  19. ExtJs 入门教程(我感觉挺好的)
  20. Backtrader获取数据集当天的全部数据

热门文章

  1. 创建SVN 本地服务器
  2. 【字符串操作之】从原字符串中切出一段,返回一个新的字符串→→slice方法...
  3. ArcGIS Engine 10 开发常见问题的解决方法
  4. s5-13 RIP 为什么会 衰败
  5. 函数 单片机glint_GL 库函数
  6. Linux 系统的日志管理
  7. html中纯js互斥按钮,JS如何实现checkbox互斥功能
  8. 浅谈语音质量保障:如何测试 RTC 中的音频质量?
  9. 独家下载!Java工程师成神必备宝典
  10. 八位技术专家分享他们最喜欢的物联网技术