c++:HDU 3410 Passing the Message

编程入门 行业动态 更新时间:2024-10-24 06:32:06

c++:<a href=https://www.elefans.com/category/jswz/34/1769149.html style=HDU 3410 Passing the Message"/>

c++:HDU 3410 Passing the Message

Passing the Message
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 1222 Accepted Submission(s): 798

Problem Description

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.

Input

The 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 .

Output

For 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

题目大意:有n个人站成 一排,每个人都要找出他左边比他矮的人里面最高的人的位置,还要找到右边比他矮的人中最高的人的位置,注意他们不能越过比他们高的人去看后面的人,输出每个人左边比他矮的人里面最高的人的位置和右边比他矮的人中最高的人的位置。

#include <iostream>
using namespace std;
const int N = 1e5 + 10;
int stack1[N], tt1, ans1[N];
int stack2[N], ans2[N];
int a[N];
int main()
{ios::sync_with_stdio(false);int nn; cin >> nn;while (nn--) {memset(stack1, 0, sizeof(stack1));memset(stack2, 0, sizeof(stack2));int n; cin >> n;for (int i = 1; i <= n; i++) cin >> a[i];for (int i = 1; i <= n; i++) {if (a[i] < a[stack1[tt1]] && tt1) {ans1[i] = 0; tt1 += 1; stack1[tt1] = i;}else {while (a[i] > a[stack1[tt1]] && tt1)tt1--;tt1 += 1, ans1[i] = stack1[tt1], stack1[tt1]=i;          }}tt1 = 0;for(int i=n;i>0;i--){if (a[i] < a[stack2[tt1]] && tt1) {ans2[i] = 0; tt1 += 1; stack2[tt1] = i;}else {while (a[i] > a[stack2[tt1]] && tt1)tt1--;tt1 += 1, ans2[i] = stack2[tt1], stack2[tt1] = i;         }}for (int i = 1; i <= n; i++)cout << ans1[i] << ' ' << ans2[i] << endl;}return 0;
}

更多推荐

c++:HDU 3410 Passing the Message

本文发布于:2024-03-06 13:52:00,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1715484.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:HDU   Message   Passing

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!