您的位置:首页 > 其它

HDU 3410 Passing the Message

2016-08-03 17:36 387 查看
DescriptionWhat 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 messageto 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 versionsof 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 5thkid 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 than2^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
本题其实就是求一个点左右能到达的最远的距离,而限制就是值的大小。
使用单调栈可以轻松搞定,从左到右把数字加入栈中,如果此时栈中元素不单调,那么取出顶端元素,
顺便更新答案即可,同理,反着再扫一遍就能得到左边的答案。
#include<set>#include<map>#include<ctime>#include<cmath>#include<stack>#include<queue>#include<bitset>#include<cstdio>#include<string>#include<cstring>#include<iostream>#include<algorithm>#include<functional>#define rep(i,j,k) for (int i = j; i <= k; i++)#define per(i,j,k) for (int i = j; i >= k; i--)using namespace std;typedef long long LL;const int low(int x) { return x&-x; }const double eps = 1e-8;const int INF = 0x7FFFFFFF;//const int mod = 1e9 + 7;const int N = 5e5;int T, n, a, L, R, cas = 0;int main(){scanf("%d", &T);while (T--){scanf("%d", &n);stack<int> p;rep(i, 1, n) scanf("%d", &a[i]), L[i] = R[i] = 0;rep(i, 1, n){while (!p.empty() && a[p.top()] < a[i]){int q = p.top();     p.pop();if (!p.empty()) R[p.top()] = q;}p.push(i);}while (!p.empty()){int q = p.top();     p.pop();if (!p.empty()) R[p.top()] = q;}per(i, n, 1){while (!p.empty() && a[p.top()] < a[i]){int q = p.top();     p.pop();if (!p.empty()) L[p.top()] = q;}p.push(i);}while (!p.empty()){int q = p.top();     p.pop();if (!p.empty()) L[p.top()] = q;}printf("Case %d:\n", ++cas);rep(i, 1, n) printf("%d %d\n", L[i], R[i]);}return 0;}

                                            
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  HDU