zoukankan      html  css  js  c++  java
  • HDU3410(单调队列)

    Passing the Message

    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
    Total Submission(s): 643    Accepted Submission(s): 413


    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
     
     1 //2016.8.24
     2 #include<iostream>
     3 #include<cstdio>
     4 #include<deque>
     5 
     6 using namespace std;
     7 const int N = 50010;
     8 int l[N], r[N], a[N];
     9 
    10 int main()
    11 {
    12     int T, n, kase = 0;
    13     cin>>T;
    14     while(T--)
    15     {
    16         scanf("%d", &n);
    17         for(int i = 1; i <= n; i++)
    18               scanf("%d", &a[i]);
    19         deque<int> q;
    20         for(int i = 1; i <= n; i++)
    21         {
    22             int fr = 1, ba = 0;
    23             while(!q.empty()&&a[q.back()]<a[i])
    24             {
    25                 fr = 0;
    26                 ba = q.back();
    27                 q.pop_back();
    28             }
    29             if(fr) l[i] = 0;
    30             else l[i] = ba;
    31             q.push_back(i);
    32         }
    33         for(int i = n; i >= 1; i--)
    34         {
    35             int fr = 1, ba = 0;
    36             while(!q.empty()&&a[q.back()]<a[i])
    37             {
    38                 fr = 0;
    39                 ba = q.back();
    40                 q.pop_back();
    41             }
    42             if(fr) r[i] = 0;
    43             else r[i] = ba;
    44             q.push_back(i);
    45         }
    46         printf("Case %d:
    ", ++kase);
    47         for(int i = 1; i <= n; i++)
    48               printf("%d %d
    ", l[i], r[i]);
    49     }
    50     return 0;
    51 }
  • 相关阅读:
    【pytest学习10】fixture参数化,fixture(params=data)装饰器的data是函数返回值yield request.param ,将带到下面调用为参数的函数中
    Pipfile 文件转换利器——pipfile-freeze
    npm的lock
    调试wmi连接主机进行监控
    RPC电源监控总结
    HTTP协议三次握手过程
    linux常用命令集
    Gym
    Gym
    实验2.2
  • 原文地址:https://www.cnblogs.com/Penn000/p/5804433.html
Copyright © 2011-2022 走看看