zoukankan      html  css  js  c++  java
  • Passing the Message

    Passing the Message

    http://acm.hdu.edu.cn/showproblem.php?pid=3410

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


    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
     
    Source
     

     栈内顺序递减

     1 #include<iostream>
     2 #include<algorithm>
     3 #include<string>
     4 #include<map>
     5 #include<vector>
     6 #include<cmath>
     7 #include<string.h>
     8 #include<stdlib.h>
     9 #include<stack>
    10 #include<queue>
    11 #include<cstdio>
    12 #define ll long long
    13 const long long MOD=1000000007;
    14 #define maxn 50005
    15 using namespace std;
    16 
    17 
    18 struct sair{
    19     int v,pos,L,R;
    20 } a[maxn];
    21 
    22 int main(){
    23     std::ios::sync_with_stdio(false);
    24     int t;
    25     cin>>t;
    26     int co=0;
    27     while(t--){
    28         int n;
    29         cin>>n;
    30         for(int i=1;i<=n;i++){
    31             cin>>a[i].v;
    32             a[i].pos=i;
    33             a[i].L=a[i].R=0;
    34         }
    35         stack<sair>st;
    36         int pos;
    37         for(int i=1;i<=n;i++){
    38             if(st.empty()){
    39                 st.push(a[i]);
    40             }
    41             else{
    42                 pos=0;
    43                 while(st.size()&&st.top().v<=a[i].v){
    44                     a[st.top().pos].R=pos;
    45                     pos=st.top().pos;
    46                     st.pop();
    47                 }
    48                 if(pos!=-1){
    49                     a[i].L=pos;
    50                 }
    51                 st.push(a[i]);
    52             }
    53         }
    54         pos=st.top().pos;
    55         st.pop();
    56         sair tmp;
    57         while(st.size()){
    58             tmp=st.top();
    59             a[tmp.pos].R=pos;
    60             pos=tmp.pos;
    61             st.pop();
    62         }
    63         cout<<"Case "<<++co<<":"<<endl;
    64         for(int i=1;i<=n;i++){
    65             cout<<a[i].L<<" "<<a[i].R<<endl;
    66         }
    67     }
    68 
    69 }
    View Code
  • 相关阅读:
    第三方接口开发规范
    项目经理、技术经理、team leader
    ibatis #和$符号的区别,传入字符串而不加引号
    WindowManager.LayoutParams详解
    AIDL 编译报can be an out parameter, so you must declare it as in, out or inout原因探究
    map里的keyset()和entryset()方法.
    android 使用代码实现 RelativeLayout布局
    Android中的Selector
    intentfilter 之 data 「scheme, host, port, mimeType, path, pathPrefix, pathPattern」
    找信息的方法
  • 原文地址:https://www.cnblogs.com/Fighting-sh/p/10058311.html
Copyright © 2011-2022 走看看